Merge branch 'develop' into lua_waiters

This commit is contained in:
Filip Maj 2017-04-02 14:29:37 -04:00
commit 248ea0cce1
5 changed files with 59 additions and 12 deletions

View file

@ -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;