From 4a544a9ea382970549be6d05c709d1eaa0962dd1 Mon Sep 17 00:00:00 2001 From: Filip Maj Date: Tue, 10 Jan 2017 16:45:38 -0500 Subject: [PATCH] The required sql file. --- sql/gamedata_actor_pushcommand.sql | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 sql/gamedata_actor_pushcommand.sql diff --git a/sql/gamedata_actor_pushcommand.sql b/sql/gamedata_actor_pushcommand.sql new file mode 100644 index 00000000..700d18b3 --- /dev/null +++ b/sql/gamedata_actor_pushcommand.sql @@ -0,0 +1,24 @@ +/* +MySQL Data Transfer +Source Host: localhost +Source Database: ffxiv_server +Target Host: localhost +Target Database: ffxiv_server +Date: 1/10/2017 4:44:59 PM +*/ + +SET FOREIGN_KEY_CHECKS=0; +-- ---------------------------- +-- Table structure for gamedata_actor_pushcommand +-- ---------------------------- +CREATE TABLE `gamedata_actor_pushcommand` ( + `id` int(10) unsigned NOT NULL, + `pushCommand` smallint(5) unsigned NOT NULL DEFAULT '0', + `pushCommandSub` smallint(6) NOT NULL DEFAULT '0', + `pushCommandPriority` tinyint(3) unsigned NOT NULL DEFAULT '0', + PRIMARY KEY (`id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1; + +-- ---------------------------- +-- Records +-- ----------------------------