mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2025-12-12 15:49:28 -08:00
8 lines
402 B
SQL
8 lines
402 B
SQL
-- Servatrice db migration from version 16 to version 17
|
|
|
|
alter table cockatrice_rooms modify column `id_server` tinyint(3) not null default 1;
|
|
alter table cockatrice_rooms_gametypes modify column `id_server` tinyint(3) not null default 1;
|
|
alter table cockatrice_servermessages modify column `id_server` tinyint(3) not null default 1;
|
|
|
|
UPDATE cockatrice_schema_version SET version=17 WHERE version=16;
|