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

@@ -8,6 +8,5 @@ CREATE TABLE IF NOT EXISTS `clan_wars` (
`startTime` bigint(13) NOT NULL DEFAULT 0,
`endTime` bigint(13) NOT NULL DEFAULT 0,
`state` tinyint(4) NOT NULL DEFAULT 0,
KEY `clan1` (`clan1`),
KEY `clan2` (`clan2`)
PRIMARY KEY (`clan1`,`clan2`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;