mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-22 12:47:46 +00:00
Changed primary key for characters_hotbar.sql and removed id column.
This commit is contained in:
parent
4c7928da78
commit
c55acba1b6
1 changed files with 1 additions and 2 deletions
|
@ -23,13 +23,12 @@ DROP TABLE IF EXISTS `characters_hotbar`;
|
||||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||||
/*!40101 SET character_set_client = utf8 */;
|
/*!40101 SET character_set_client = utf8 */;
|
||||||
CREATE TABLE `characters_hotbar` (
|
CREATE TABLE `characters_hotbar` (
|
||||||
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|
||||||
`characterId` int(10) unsigned NOT NULL,
|
`characterId` int(10) unsigned NOT NULL,
|
||||||
`classId` smallint(5) unsigned NOT NULL,
|
`classId` smallint(5) unsigned NOT NULL,
|
||||||
`hotbarSlot` smallint(5) unsigned NOT NULL,
|
`hotbarSlot` smallint(5) unsigned NOT NULL,
|
||||||
`commandId` int(10) unsigned NOT NULL,
|
`commandId` int(10) unsigned NOT NULL,
|
||||||
`recastTime` int(10) unsigned DEFAULT NULL,
|
`recastTime` int(10) unsigned DEFAULT NULL,
|
||||||
PRIMARY KEY (`id`)
|
PRIMARY KEY (`characterId`, `classId`, `hotbarSlot`)
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
||||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue