Weiter am Chastity Ingame gearbeitet
Some checks failed
Host-Based Deploy (Java 21 Fix) / build-and-run (push) Has been cancelled
Some checks failed
Host-Based Deploy (Java 21 Fix) / build-and-run (push) Has been cancelled
This commit is contained in:
5
bin/main/db/migration/V6__game_active_default.sql
Normal file
5
bin/main/db/migration/V6__game_active_default.sql
Normal file
@@ -0,0 +1,5 @@
|
||||
-- game_active wurde ohne DEFAULT angelegt; bestehende Zeilen haben NULL –
|
||||
-- auf false setzen und NOT NULL + DEFAULT ergänzen.
|
||||
UPDATE active_lock SET game_active = 0 WHERE game_active IS NULL;
|
||||
ALTER TABLE active_lock
|
||||
MODIFY COLUMN game_active TINYINT(1) NOT NULL DEFAULT 0;
|
||||
Reference in New Issue
Block a user