mirror of
				https://bitbucket.org/Ioncannon/project-meteor-server.git
				synced 2025-05-20 08:26:59 -04:00 
			
		
		
		
	Added the changed schema for npc linkshells in the db.
This commit is contained in:
		| @@ -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 */; | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user