diff options
Diffstat (limited to 'sql/updates')
| -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; |
