Files
xxx-sphere-web/bin/main/db/migration/V6__game_active_default.sql
Mario 34e5fcd777
Some checks failed
Host-Based Deploy (Java 21 Fix) / build-and-run (push) Has been cancelled
Weiter am Chastity Ingame gearbeitet
2026-04-27 17:41:00 +02:00

6 lines
282 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
-- 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;