© 2026 Hedgehog Software, LLC
hidden: boolean("hidden").notNull().default(false),
id: serial('id').primaryKey(), slug: varchar('slug', { length: 64 }).unique().notNull(), title: varchar('title', { length: 64 }).unique().notNull(), content: text('content').notNull(), createdAt: timestamp('created_at').defaultNow(), lastEdit: timestamp('last_edit').defaultNow(), readTime: smallint('read_time').notNull()