fix: use common sql syntax for dropping null constraint on birthday field
Deploy Miniplan / build (push) Successful in 2m58s

This commit is contained in:
2026-07-14 22:59:35 +02:00
parent 32109debfd
commit 2dac1598ff
@@ -30,7 +30,7 @@ fun Application.configureDatabases() {
SchemaUtils.create(Gottesdienste)
SchemaUtils.create(Marks)
// TODO Add proper versioning and migration for database
exec("ALTER TABLE MINISTRANTEN ALTER COLUMN birthday BIGINT NULL;")
exec("ALTER TABLE MINISTRANTEN ALTER COLUMN birthday DROP NOT NULL;")
}
}