Added the changed schema for npc linkshells in the db.

This commit is contained in:
Filip Maj 2017-04-09 14:04:23 -04:00
parent 0d4ed1d1c8
commit 8c07e3f549

View File

@ -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 */;