mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-20 19:57:46 +00:00
22 lines
677 B
MySQL
22 lines
677 B
MySQL
![]() |
/*
|
||
|
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;
|