diff --git a/upgrade/sql/8.0.0.sql b/upgrade/sql/8.0.0.sql index d3b45051d6..f1dc7d4a98 100644 --- a/upgrade/sql/8.0.0.sql +++ b/upgrade/sql/8.0.0.sql @@ -239,3 +239,8 @@ UPDATE `PREFIX_carrier` SET `name` = 'Click and collect' WHERE `name` = '0'; /* PHP:drop_column_if_exists('product_attribute', 'location'); */; /* PHP:drop_column_if_exists('product_attribute', 'quantity'); */; /* PHP:drop_column_if_exists('orders', 'shipping_number'); */; + +ALTER TABLE `PREFIX_tab` DROP hide_host_mode; +ALTER TABLE `PREFIX_feature_flag` + CHANGE label_wording label_wording VARCHAR(512) DEFAULT '' NOT NULL, + CHANGE description_wording description_wording VARCHAR(512) DEFAULT '' NOT NULL;