mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-08 21:44:35 +02:00
Merge branch 'develop' into lua_waiters
This commit is contained in:
commit
248ea0cce1
5 changed files with 59 additions and 12 deletions
|
@ -6,18 +6,18 @@ Target Host: localhost
|
|||
Target Database: ffxiv_server
|
||||
Date: 4/2/2017 2:27:36 PM
|
||||
*/
|
||||
|
||||
SET autocommit=0;
|
||||
SET FOREIGN_KEY_CHECKS=0;
|
||||
-- ----------------------------
|
||||
-- Table structure for gamedata_actor_class
|
||||
-- ----------------------------
|
||||
CREATE TABLE `gamedata_actor_class` (
|
||||
`id` int(10) unsigned NOT NULL,
|
||||
`classPath` varchar(64) NOT NULL,
|
||||
`displayNameId` int(10) unsigned NOT NULL DEFAULT '4294967295',
|
||||
`propertyFlags` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`eventConditions` longtext,
|
||||
PRIMARY KEY (`id`)
|
||||
CREATE TABLE `gamedata_actor_class` (
|
||||
`id` int(10) unsigned NOT NULL,
|
||||
`classPath` varchar(64) NOT NULL,
|
||||
`displayNameId` int(10) unsigned NOT NULL DEFAULT '4294967295',
|
||||
`propertyFlags` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`eventConditions` longtext,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
||||
|
||||
-- ----------------------------
|
||||
|
@ -8007,3 +8007,5 @@ INSERT INTO `gamedata_actor_class` VALUES ('9220405', '', '2', '0', null);
|
|||
INSERT INTO `gamedata_actor_class` VALUES ('9220406', '', '2', '0', null);
|
||||
INSERT INTO `gamedata_actor_class` VALUES ('9220407', '', '2', '0', null);
|
||||
INSERT INTO `gamedata_actor_class` VALUES ('9220408', '', '2', '0', null);
|
||||
|
||||
COMMIT;
|
Loading…
Add table
Add a link
Reference in a new issue