From 246677b75055f1708113de043dd269d1d0b7dbab Mon Sep 17 00:00:00 2001 From: florianfederspiel Date: Thu, 15 Jan 2026 12:19:34 +0100 Subject: [PATCH] Fixed Missing Phase on Init --- backend/db/schema/projects.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/db/schema/projects.ts b/backend/db/schema/projects.ts index badf583..fdb0453 100644 --- a/backend/db/schema/projects.ts +++ b/backend/db/schema/projects.ts @@ -71,7 +71,7 @@ export const projects = pgTable("projects", { updatedAt: timestamp("updated_at", { withTimezone: true }), 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