Ergänze Entwurfsstatus für Termine und Plantafel

This commit is contained in:
2026-05-19 12:18:30 +02:00
parent 0ac22d346f
commit ea392af094
6 changed files with 176 additions and 7 deletions

View File

@@ -0,0 +1,5 @@
ALTER TABLE "events" ADD COLUMN "state" text DEFAULT 'Final' NOT NULL;
UPDATE "events"
SET "state" = 'Final'
WHERE "state" IS NULL;