© 2026 Hedgehog Software, LLC
export const products = sqliteTable("products", { id: integer("id").primaryKey({ autoIncrement: false }).notNull(), name: text("name").notNull(), description: text("description"), });
export type NewProduct = typeof products.$inferInsert;
id
NewProduct
type NewProduct = { name: string; id?: number | undefined; <---- SHOULD JUST BE NUMBER description?: string | null | undefined; }