From 6636ca8585f41aad9c984241506e63ba67d79576 Mon Sep 17 00:00:00 2001 From: Shauren Date: Wed, 19 Apr 2017 19:10:49 +0200 Subject: Core/DataStores: Updated sending out hotfixes --- sql/updates/hotfixes/master/2017_04_19_01_hotfixes.sql | 8 ++++++++ sql/updates/world/master/2017_04_19_01_world.sql | 1 + 2 files changed, 9 insertions(+) create mode 100644 sql/updates/hotfixes/master/2017_04_19_01_hotfixes.sql create mode 100644 sql/updates/world/master/2017_04_19_01_world.sql (limited to 'sql') diff --git a/sql/updates/hotfixes/master/2017_04_19_01_hotfixes.sql b/sql/updates/hotfixes/master/2017_04_19_01_hotfixes.sql new file mode 100644 index 00000000000..373a04d0ba4 --- /dev/null +++ b/sql/updates/hotfixes/master/2017_04_19_01_hotfixes.sql @@ -0,0 +1,8 @@ +DROP TABLE IF EXISTS `hotfix_data`; +CREATE TABLE `hotfix_data` ( + `Id` int(11) NOT NULL, + `TableHash` int(10) unsigned NOT NULL, + `RecordId` int(11) NOT NULL, + `Deleted` tinyint(3) unsigned NULL DEFAULT '0', + PRIMARY KEY (`Id`, `TableHash`, `RecordId`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; diff --git a/sql/updates/world/master/2017_04_19_01_world.sql b/sql/updates/world/master/2017_04_19_01_world.sql new file mode 100644 index 00000000000..7aeddee48a9 --- /dev/null +++ b/sql/updates/world/master/2017_04_19_01_world.sql @@ -0,0 +1 @@ +ALTER TABLE `version` ADD `hotfix_cache_id` int(11) NOT NULL DEFAULT '0'; -- cgit v1.2.3