From f272a78caab463988e0d244d92e4cb0fce2c942f Mon Sep 17 00:00:00 2001 From: funjoker Date: Sat, 8 Dec 2018 00:05:57 +0100 Subject: Core/DataStores: Implemented sending hotfixes for db2 stores not loaded serverside (#22800) --- sql/updates/hotfixes/master/2018_12_07_00_hotfixes.sql | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 sql/updates/hotfixes/master/2018_12_07_00_hotfixes.sql (limited to 'sql') diff --git a/sql/updates/hotfixes/master/2018_12_07_00_hotfixes.sql b/sql/updates/hotfixes/master/2018_12_07_00_hotfixes.sql new file mode 100644 index 00000000000..6588e2972fa --- /dev/null +++ b/sql/updates/hotfixes/master/2018_12_07_00_hotfixes.sql @@ -0,0 +1,10 @@ +-- +-- Table structure for table `hotfix_blob` +-- +DROP TABLE IF EXISTS `hotfix_blob`; +CREATE TABLE `hotfix_blob` ( + `TableHash` INT(10) UNSIGNED NOT NULL, + `RecordId` INT(11) NOT NULL, + `Blob` BLOB, + PRIMARY KEY (`TableHash`,`RecordId`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- cgit v1.2.3