diff options
author | Shauren <shauren.trinity@gmail.com> | 2012-06-07 23:25:33 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2012-06-07 23:25:33 +0200 |
commit | 73e6eedce8e89f823de4646e204d78826758c840 (patch) | |
tree | cab66b69fc08c4c45980779013da605fb74c8f09 /sql/base | |
parent | c7775c8d72fb8618ad96c243910f923b239ea39b (diff) |
And missing full sql changes
Diffstat (limited to 'sql/base')
-rw-r--r-- | sql/base/characters_database.sql | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/base/characters_database.sql b/sql/base/characters_database.sql index 9908254ff0e..57e5f6f6ab7 100644 --- a/sql/base/characters_database.sql +++ b/sql/base/characters_database.sql @@ -1266,6 +1266,7 @@ DROP TABLE IF EXISTS `creature_respawn`; CREATE TABLE `creature_respawn` ( `guid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier', `respawnTime` int(10) unsigned NOT NULL DEFAULT '0', + `mapId` smallint(10) unsigned NOT NULL DEFAULT '0', `instanceId` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Instance Identifier', PRIMARY KEY (`guid`,`instanceId`), KEY `idx_instance` (`instanceId`) @@ -1339,6 +1340,7 @@ DROP TABLE IF EXISTS `gameobject_respawn`; CREATE TABLE `gameobject_respawn` ( `guid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier', `respawnTime` int(10) unsigned NOT NULL DEFAULT '0', + `mapId` smallint(10) unsigned NOT NULL DEFAULT '0', `instanceId` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Instance Identifier', PRIMARY KEY (`guid`,`instanceId`), KEY `idx_instance` (`instanceId`) |