Commit 950fc013 authored by woogerboy21's avatar woogerboy21
Browse files

Correct gametype primary key

Updated rooms_gametype to reflect proper column as primary key.
parent 07cccda1
...@@ -220,6 +220,6 @@ PRIMARY KEY (`id`) ...@@ -220,6 +220,6 @@ PRIMARY KEY (`id`)
CREATE TABLE IF NOT EXISTS `cockatrice_rooms_gametypes` ( CREATE TABLE IF NOT EXISTS `cockatrice_rooms_gametypes` (
`id_room` int(7) unsigned NOT NULL, `id_room` int(7) unsigned NOT NULL,
`name` varchar(50) NOT NULL, `name` varchar(50) NOT NULL,
PRIMARY KEY (`id_room`) PRIMARY KEY (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8; ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment