aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorRat <gmstreetrat@gmail.com>2015-04-05 23:51:46 +0200
committerRat <gmstreetrat@gmail.com>2015-04-05 23:51:46 +0200
commit9d59d038f8b09ed036448e755cb0b102396a4ca1 (patch)
treef1aaf46803a901ad1ed7d7532efd5e7b8a3b52c3 /sql
parente7eab4bd0713096e16dc36013b15f5bcb39e684c (diff)
Core/GameObjects: Implemented gameobject_addon table, you can now set invisibility for gameobjects for quests
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/world/2015_04_05_07_world.sql7
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/updates/world/2015_04_05_07_world.sql b/sql/updates/world/2015_04_05_07_world.sql
new file mode 100644
index 00000000000..2e603ee893b
--- /dev/null
+++ b/sql/updates/world/2015_04_05_07_world.sql
@@ -0,0 +1,7 @@
+DROP TABLE IF EXISTS `gameobject_addon`;
+CREATE TABLE `gameobject_addon` (
+ `guid` bigint(20) unsigned NOT NULL DEFAULT '0',
+ `invisibilityType` tinyint(3) unsigned NOT NULL DEFAULT '0',
+ `invisibilityValue` int(10) unsigned NOT NULL DEFAULT '0',
+ PRIMARY KEY (`guid`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;