aboutsummaryrefslogtreecommitdiff
path: root/sql/updates
diff options
context:
space:
mode:
authorBrian <runningnak3d@gmail.com>2009-11-26 12:23:33 -0700
committerBrian <runningnak3d@gmail.com>2009-11-26 12:23:33 -0700
commit7d754c3f7f0046ae432028ba8745256bbcbaeb39 (patch)
tree2784fd860d23ad230e3d88318e8ccf82cf46c2d3 /sql/updates
parentd792107835b10f2018f497ada1e9efe92bae3d67 (diff)
* Added support for questItem5 and questItem6 in creature and gameobject
* templates. * * Thanks to Malcrom for doing the research. --HG-- branch : trunk
Diffstat (limited to 'sql/updates')
-rw-r--r--sql/updates/6374_world.sql4
1 files changed, 4 insertions, 0 deletions
diff --git a/sql/updates/6374_world.sql b/sql/updates/6374_world.sql
new file mode 100644
index 00000000000..a1a8fdf5278
--- /dev/null
+++ b/sql/updates/6374_world.sql
@@ -0,0 +1,4 @@
+ALTER TABLE `creature_template` ADD `questItem5` int(11) UNSIGNED NOT NULL DEFAULT 0 AFTER `questItem4`;
+ALTER TABLE `creature_template` ADD `questItem6` int(11) UNSIGNED NOT NULL DEFAULT 0 AFTER `questItem5`;
+ALTER TABLE `gameobject_template` ADD `questItem5` int(11) UNSIGNED NOT NULL DEFAULT 0 AFTER `questItem4`;
+ALTER TABLE `gameobject_template` ADD `questItem6` int(11) UNSIGNED NOT NULL DEFAULT 0 AFTER `questItem5`;