Changed clan_wars SQL table primary key.

This commit is contained in:
MobiusDevelopment
2019-03-19 16:52:30 +00:00
parent 4340ca33e0
commit 391ea39fd4
13 changed files with 14 additions and 29 deletions

View File

@@ -1,13 +1,10 @@
--
-- Table structure for `clan_wars`
--
CREATE TABLE IF NOT EXISTS `clan_wars` (
`clan1` varchar(35) NOT NULL default '',
`clan2` varchar(35) NOT NULL default '',
`wantspeace1` decimal(1,0) NOT NULL default '0',
`wantspeace2` decimal(1,0) NOT NULL default '0'
`wantspeace2` decimal(1,0) NOT NULL default '0',
PRIMARY KEY (`clan1`,`clan2`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;