Fixed Missing Phase on Init

This commit is contained in:
2026-01-15 12:19:34 +01:00
parent c839714945
commit 246677b750

View File

@@ -71,7 +71,7 @@ export const projects = pgTable("projects", {
updatedAt: timestamp("updated_at", { withTimezone: true }), updatedAt: timestamp("updated_at", { withTimezone: true }),
updatedBy: uuid("updated_by").references(() => authUsers.id), updatedBy: uuid("updated_by").references(() => authUsers.id),
active_phase: text("active_phase"), active_phase: text("active_phase").default("Erstkontakt"),
}) })
export type Project = typeof projects.$inferSelect export type Project = typeof projects.$inferSelect