mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
Core/DataStores: Implemented sending hotfixes for db2 stores not loaded serverside (#22800)
This commit is contained in:
10
sql/updates/hotfixes/master/2018_12_07_00_hotfixes.sql
Normal file
10
sql/updates/hotfixes/master/2018_12_07_00_hotfixes.sql
Normal 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;
|
||||
Reference in New Issue
Block a user