diff options
author | ShinDarth <borzifrancesco@gmail.com> | 2016-08-11 12:06:27 +0200 |
---|---|---|
committer | ShinDarth <borzifrancesco@gmail.com> | 2016-08-11 12:06:27 +0200 |
commit | 269b2b726d28d055d63c20a151895e7bc1f33ec0 (patch) | |
tree | e24efdb073ba04f56669faef85eb9c19d889efee | |
parent | 2ba9f6f17b28dcf8b9214533a13183e6fa57a2db (diff) |
Add missing world_db_version table update
-rw-r--r-- | data/sql/updates/world/2016_08_10_00.sql | 2 | ||||
-rw-r--r-- | data/sql/updates/world/2016_08_10_01.sql | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/data/sql/updates/world/2016_08_10_00.sql b/data/sql/updates/world/2016_08_10_00.sql index 312b1ba674..ece8bc98e6 100644 --- a/data/sql/updates/world/2016_08_10_00.sql +++ b/data/sql/updates/world/2016_08_10_00.sql @@ -1,3 +1,5 @@ +ALTER TABLE world_db_version CHANGE COLUMN 2016_08_03_00 2016_08_10_00 bit; + # Import some trinity_string from TrinityCore INSERT IGNORE INTO `trinity_string` (`entry`, `content_default`, `content_loc1`, `content_loc2`, `content_loc3`, `content_loc4`, `content_loc5`, `content_loc6`, `content_loc7`, `content_loc8`)VALUES (63, 'Wrong parameter, id: %u does not exist.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), diff --git a/data/sql/updates/world/2016_08_10_01.sql b/data/sql/updates/world/2016_08_10_01.sql index bfb2a9fc6b..1dfe9d2a71 100644 --- a/data/sql/updates/world/2016_08_10_01.sql +++ b/data/sql/updates/world/2016_08_10_01.sql @@ -1,3 +1,5 @@ +ALTER TABLE world_db_version CHANGE COLUMN 2016_08_10_00 2016_08_10_01 bit; + INSERT IGNORE INTO `command` (`name`, `security`, `help`) VALUES ('instance setbossstate', 2, 'Syntax: .instance setbossstate $bossId $encounterState [$Name]\r\nSets the EncounterState for the given boss id to a new value. EncounterStates range from 0 to 5.\r\nIf no character name is provided, the current map will be used as target.'), ('instance getbossstate', 2, 'Syntax: .instance getbossstate $bossId [$Name]\r\nGets the current EncounterState for the provided boss id.\r\nIf no character name is provided, the current map will be used as target.'); |