mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-04-28 11:53:11 -07:00
Implement migrations; fix #153
This commit is contained in:
13
servatrice/migrations/servatrice_0000_to_0001.sql
Normal file
13
servatrice/migrations/servatrice_0000_to_0001.sql
Normal file
@@ -0,0 +1,13 @@
|
||||
-- Servatrice db migration from version 0 to version 1
|
||||
|
||||
-- FIX #153
|
||||
CREATE TABLE IF NOT EXISTS `cockatrice_schema_version` (
|
||||
`version` int(7) unsigned NOT NULL,
|
||||
PRIMARY KEY (`version`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
|
||||
INSERT INTO cockatrice_schema_version VALUES(1);
|
||||
|
||||
-- FIX #1119
|
||||
ALTER TABLE `cockatrice_rooms_gametypes` DROP PRIMARY KEY;
|
||||
ALTER TABLE `cockatrice_rooms_gametypes` ADD KEY (`id_room`);
|
||||
Reference in New Issue
Block a user