diff options
| author | funjoker <torti-esser@web.de> | 2018-12-08 00:05:57 +0100 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2018-12-08 00:05:57 +0100 |
| commit | f272a78caab463988e0d244d92e4cb0fce2c942f (patch) | |
| tree | 9bcf46c45f324537064d9fc072922162b2cad0dd /sql/updates/hotfixes | |
| parent | 9a8f09de57c32234a9c9db6df57bb7353d679967 (diff) | |
Core/DataStores: Implemented sending hotfixes for db2 stores not loaded serverside (#22800)
Diffstat (limited to 'sql/updates/hotfixes')
| -rw-r--r-- | sql/updates/hotfixes/master/2018_12_07_00_hotfixes.sql | 10 |
1 files changed, 10 insertions, 0 deletions
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; |
