mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-09 05:54:50 +02:00
SQL Files for new inventory.
This commit is contained in:
parent
29e3f61b6b
commit
8aeaee1b19
6 changed files with 111 additions and 71 deletions
35
sql/server_items_modifiers.sql
Normal file
35
sql/server_items_modifiers.sql
Normal file
|
@ -0,0 +1,35 @@
|
|||
/*
|
||||
MySQL Data Transfer
|
||||
Source Host: localhost
|
||||
Source Database: ffxiv_server
|
||||
Target Host: localhost
|
||||
Target Database: ffxiv_server
|
||||
Date: 12/17/2017 3:38:44 PM
|
||||
*/
|
||||
|
||||
SET FOREIGN_KEY_CHECKS=0;
|
||||
-- ----------------------------
|
||||
-- Table structure for server_items_modifiers
|
||||
-- ----------------------------
|
||||
CREATE TABLE `server_items_modifiers` (
|
||||
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`durability` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`mainQuality` tinyint(3) unsigned NOT NULL DEFAULT '1',
|
||||
`subQuality1` tinyint(3) unsigned NOT NULL DEFAULT '1',
|
||||
`subQuality2` tinyint(3) unsigned NOT NULL DEFAULT '1',
|
||||
`subQuality3` tinyint(3) unsigned NOT NULL DEFAULT '1',
|
||||
`param1` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`param2` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`param3` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`spiritbind` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`materia1` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`materia2` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`materia3` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`materia4` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`materia5` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=2315 DEFAULT CHARSET=latin1;
|
||||
|
||||
-- ----------------------------
|
||||
-- Records
|
||||
-- ----------------------------
|
Loading…
Add table
Add a link
Reference in a new issue