fix: error in schema
Some checks failed
Deploy to GitHub Pages / build_site (push) Failing after 36s

This commit is contained in:
2024-12-20 12:49:25 +01:00
parent ec037a3bbd
commit 7060b37df5
4 changed files with 15 additions and 6 deletions

View File

@ -27,7 +27,7 @@ export const nodeTable = pgTable("nodes", {
nodeId: varchar().notNull(),
content: bytea().notNull(),
definition: json().notNull(),
hash: varchar({ length: 8 }).notNull(),
hash: varchar({ length: 8 }).notNull().unique(),
previous: varchar({ length: 8 }),
}, (table) => [
foreignKey({