Changed clan_wars SQL table primary key.
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user