Core/DataStores: Implemented sending hotfixes for db2 stores not loaded serverside (#22800)

This commit is contained in:
funjoker
2018-12-08 00:05:57 +01:00
committed by Shauren
parent 9a8f09de57
commit f272a78caa
5 changed files with 62 additions and 4 deletions

View File

@@ -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;