Forgot Retainers_Inventory sql file.

This commit is contained in:
Filip Maj 2017-09-09 14:34:44 -04:00
parent 3f82ca1244
commit 16e99040e0

View File

@ -0,0 +1,21 @@
/*
MySQL Data Transfer
Source Host: localhost
Source Database: ffxiv_server
Target Host: localhost
Target Database: ffxiv_server
Date: 9/9/2017 2:30:28 PM
*/
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,
`inventoryType` smallint(5) unsigned NOT NULL DEFAULT '0',
`serverItemId` int(10) unsigned NOT NULL,
`quantity` int(10) unsigned NOT NULL DEFAULT '1',
PRIMARY KEY (`id`,`retainerId`)
) ENGINE=InnoDB AUTO_INCREMENT=333 DEFAULT CHARSET=utf8;