mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-02 19:42:05 -04:00
Added the changed schema for npc linkshells in the db.
This commit is contained in:
parent
0d4ed1d1c8
commit
8c07e3f549
@ -23,12 +23,11 @@ DROP TABLE IF EXISTS `characters_npclinkshell`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `characters_npclinkshell` (
|
||||
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`characterId` int(11) unsigned NOT NULL,
|
||||
`npcLinkshellId` smallint(5) unsigned NOT NULL,
|
||||
`isCalling` tinyint(1) unsigned DEFAULT '0',
|
||||
`isExtra` tinyint(1) unsigned DEFAULT '0',
|
||||
PRIMARY KEY (`id`)
|
||||
`isCalling` tinyint(1) unsigned NOT NULL DEFAULT '0',
|
||||
`isExtra` tinyint(1) unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`characterId`,`npcLinkshellId`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user