From e248d5a4062a83e1016bcd646073992f20fac291 Mon Sep 17 00:00:00 2001 From: Rat Date: Mon, 6 Apr 2015 19:49:39 +0200 Subject: Core/DataBase: implemented creature_questitem and gameobject_questitem tables --- sql/updates/world/2015_04_06_01_world.sql | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 sql/updates/world/2015_04_06_01_world.sql (limited to 'sql') diff --git a/sql/updates/world/2015_04_06_01_world.sql b/sql/updates/world/2015_04_06_01_world.sql new file mode 100644 index 00000000000..a47def6c50c --- /dev/null +++ b/sql/updates/world/2015_04_06_01_world.sql @@ -0,0 +1,15 @@ +DROP TABLE IF EXISTS `creature_questitem`; +CREATE TABLE `creature_questitem` ( + `CreatureEntry` int(10) unsigned NOT NULL DEFAULT '0', + `Idx` int(10) unsigned NOT NULL DEFAULT '0', + `ItemId` int(10) unsigned NOT NULL DEFAULT '0', + PRIMARY KEY (`CreatureEntry`,`Idx`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +DROP TABLE IF EXISTS `gameobject_questitem`; +CREATE TABLE `gameobject_questitem` ( + `GameObjectEntry` int(10) unsigned NOT NULL DEFAULT '0', + `Idx` int(10) unsigned NOT NULL DEFAULT '0', + `ItemId` int(10) unsigned NOT NULL DEFAULT '0', + PRIMARY KEY (`GameObjectEntry`,`Idx`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; \ No newline at end of file -- cgit v1.2.3