aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/hotfixes/master/2020_07_04_00_hotfixes.sql6
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/updates/hotfixes/master/2020_07_04_00_hotfixes.sql b/sql/updates/hotfixes/master/2020_07_04_00_hotfixes.sql
new file mode 100644
index 00000000000..064e65f8fe0
--- /dev/null
+++ b/sql/updates/hotfixes/master/2020_07_04_00_hotfixes.sql
@@ -0,0 +1,6 @@
+ALTER TABLE `hotfix_blob`
+ADD COLUMN `locale` VARCHAR(4) NOT NULL COLLATE 'utf8mb4_unicode_ci' AFTER `RecordId`,
+DROP PRIMARY KEY,
+ADD PRIMARY KEY (`TableHash`, `RecordId`, `locale`);
+
+UPDATE `hotfix_blob` SET `locale` = "enUS";