mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2025-12-12 07:40:30 -08:00
7 lines
261 B
SQL
7 lines
261 B
SQL
-- Servatrice db migration from version 13 to version 14
|
|
|
|
alter table cockatrice_sessions add `connection_type` ENUM('tcp', 'websocket');
|
|
UPDATE cockatrice_sessions SET connection_type = 'tcp';
|
|
|
|
UPDATE cockatrice_schema_version SET version=14 WHERE version=13;
|