From 9cc31f9d53eb4c43ce1737fbf09dd261d224dc44 Mon Sep 17 00:00:00 2001 From: hondacrx Date: Mon, 4 Dec 2017 14:37:08 -0500 Subject: [PATCH] Added missing Sql file and updated realmlist to current version --- README.md | 2 +- sql/updates/auth/master/2017_12_04_00_auth.sql | 3 +++ sql/updates/world/master/2017_12_04_00_world.sql | 1 + 3 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 sql/updates/auth/master/2017_12_04_00_auth.sql create mode 100644 sql/updates/world/master/2017_12_04_00_world.sql diff --git a/README.md b/README.md index 413a02d1d..e5a1c1b6b 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ CypherCore is an open source server project for World of Warcraft written in C#. -The current support game version is: 7.3.2.25480 +The current support game version is: 7.3.2.25549 # How to use - Simply compile the solution as you do with TC c++ version. diff --git a/sql/updates/auth/master/2017_12_04_00_auth.sql b/sql/updates/auth/master/2017_12_04_00_auth.sql new file mode 100644 index 000000000..72725ea7a --- /dev/null +++ b/sql/updates/auth/master/2017_12_04_00_auth.sql @@ -0,0 +1,3 @@ +UPDATE `realmlist` SET `gamebuild`=25549 WHERE `gamebuild`=25480; + +ALTER TABLE `realmlist` CHANGE `gamebuild` `gamebuild` int(10) unsigned NOT NULL DEFAULT '25549'; \ No newline at end of file diff --git a/sql/updates/world/master/2017_12_04_00_world.sql b/sql/updates/world/master/2017_12_04_00_world.sql new file mode 100644 index 000000000..39b5e8177 --- /dev/null +++ b/sql/updates/world/master/2017_12_04_00_world.sql @@ -0,0 +1 @@ +ALTER TABLE `quest_template_addon` ADD COLUMN `ScriptName` VARCHAR(64) DEFAULT '' NOT NULL AFTER `SpecialFlags`;