ยฉ 2026 Hedgehog Software, LLC
pgTable
export const steps = pgTable( "steps", { id: uuid("id").primaryKey().defaultRandom(), //... createdAt: timestamp("created_at", defaultTimestampOpts).defaultNow().notNull(), updatedAt: timestamp("updated_at", defaultTimestampOpts).defaultNow().notNull(), }, (table) => ({ stepsGuideIdIndex: index("...").on(table.<..>), }), );