aboutsummaryrefslogtreecommitdiff
path: root/sql/base
diff options
context:
space:
mode:
authorShauren <none@none>2010-09-16 19:58:06 +0200
committerShauren <none@none>2010-09-16 19:58:06 +0200
commit05ccd476be9bf9047aff2d4ff8f5fc5d02dc81f1 (patch)
tree1f13fc2d565d955aa3c354d54cf8c81ff3ad7f96 /sql/base
parent502a81372078b3ec864ea98969f8afa9c53fd4dc (diff)
Core/Quests: Added index column for quest poi points forcing them to load in certain order
--HG-- branch : trunk
Diffstat (limited to 'sql/base')
-rw-r--r--sql/base/world_database.sql1
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql
index e73a3b1aab4..607278675fb 100644
--- a/sql/base/world_database.sql
+++ b/sql/base/world_database.sql
@@ -16255,6 +16255,7 @@ DROP TABLE IF EXISTS `quest_poi_points`;
CREATE TABLE `quest_poi_points` (
`questId` int(10) UNSIGNED NOT NULL DEFAULT '0',
`id` int(10) UNSIGNED NOT NULL DEFAULT '0',
+ `idx` int(10) unsigned NOT NULL DEFAULT '0',
`x` int(10) NOT NULL DEFAULT '0',
`y` int(10) NOT NULL DEFAULT '0',
KEY `questId_id` (`questId`,`id`)