mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-07-25 20:08:20 +02:00
Removed isExclusive as it is now loaded from gamedata. Cleaned up keys for retainer inventory.
This commit is contained in:
parent
3066efeebb
commit
163f240cf9
5 changed files with 5 additions and 14 deletions
|
@ -12,12 +12,11 @@ SET FOREIGN_KEY_CHECKS=0;
|
|||
-- Table structure for retainers_inventory
|
||||
-- ----------------------------
|
||||
CREATE TABLE `retainers_inventory` (
|
||||
`id` int(10) unsigned zerofill NOT NULL AUTO_INCREMENT,
|
||||
`retainerId` int(10) unsigned NOT NULL,
|
||||
`itemPackage` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`serverItemId` int(10) unsigned NOT NULL,
|
||||
PRIMARY KEY (`id`,`retainerId`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=345 DEFAULT CHARSET=utf8;
|
||||
`itemPackage` mediumint(8) unsigned NOT NULL,
|
||||
PRIMARY KEY (`retainerId`,`serverItemId`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
|
||||
|
||||
-- ----------------------------
|
||||
-- Records
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue