diff options
author | funjoker <funjoker109@gmail.com> | 2020-06-04 21:48:20 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2020-06-04 21:48:33 +0200 |
commit | ba5794a12cbd605a8f0886669b0f95cbbc27bf38 (patch) | |
tree | ea632cf3e836951987b49c7c926c5e3b86a43bec | |
parent | 853503a575dadab508f43be560327d9e7edb251f (diff) |
SQL: Add VerifiedBuild to hotfix_blob and hotfix_data
Closes #24752
-rw-r--r-- | sql/updates/hotfixes/master/2020_06_04_00_hotfixes.sql | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/updates/hotfixes/master/2020_06_04_00_hotfixes.sql b/sql/updates/hotfixes/master/2020_06_04_00_hotfixes.sql new file mode 100644 index 00000000000..48777e0b831 --- /dev/null +++ b/sql/updates/hotfixes/master/2020_06_04_00_hotfixes.sql @@ -0,0 +1,2 @@ +ALTER TABLE `hotfix_blob` ADD COLUMN `VerifiedBuild` INT(11) NOT NULL DEFAULT '0' AFTER `Blob`; +ALTER TABLE `hotfix_data` ADD COLUMN `VerifiedBuild` INT(11) NOT NULL DEFAULT '0' AFTER `Deleted`; |