Files
xxx-sphere-web/bin/main/db/migration/V5__lock_game_text_columns.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
249 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.
-- task_in_queue und lock_in_queue können serialisierte JSON-Objekte speichern,
-- die länger als 255 Zeichen sind auf TEXT erweitern.
ALTER TABLE lock_game
MODIFY COLUMN task_in_queue TEXT NULL,
MODIFY COLUMN lock_in_queue TEXT NULL;