diff options
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/hotfixes/master/2017_04_19_01_hotfixes.sql | 8 | ||||
| -rw-r--r-- | sql/updates/world/master/2017_04_19_01_world.sql | 1 |
2 files changed, 9 insertions, 0 deletions
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'; |
