diff --git a/install-new/upgrade/sql/1.0.0.7.sql b/install-new/upgrade/sql/1.0.0.7.sql index d7b148ca6..c42b6734e 100644 --- a/install-new/upgrade/sql/1.0.0.7.sql +++ b/install-new/upgrade/sql/1.0.0.7.sql @@ -1,5 +1,5 @@ /* PHP */ -/* PHP:AttributeGroup::cleanDeadCombinations(); */; +/* PHP:attribute_group_clean_combinations() */; /* STRUCTURE */ SET NAMES 'utf8'; diff --git a/install-new/upgrade/sql/1.0.0.8.sql b/install-new/upgrade/sql/1.0.0.8.sql index 254c4f0dc..3194fcfae 100644 --- a/install-new/upgrade/sql/1.0.0.8.sql +++ b/install-new/upgrade/sql/1.0.0.8.sql @@ -1,5 +1,5 @@ /* PHP */ -/* PHP:AttributeGroup::cleanDeadCombinations(); */; +/* PHP:attribute_group_clean_combinations(); */; /* STRUCTURE */ SET NAMES 'utf8'; diff --git a/install-new/upgrade/sql/1.1.0.1.sql b/install-new/upgrade/sql/1.1.0.1.sql index c00a3176e..344b69f18 100644 --- a/install-new/upgrade/sql/1.1.0.1.sql +++ b/install-new/upgrade/sql/1.1.0.1.sql @@ -1,5 +1,5 @@ /* PHP */ -/* PHP:AttributeGroup::cleanDeadCombinations(); */; +/* PHP:attribute_group_clean_combinations(); */; /* PHP:configuration_double_cleaner(); */; SET NAMES 'utf8'; diff --git a/install-new/upgrade/sql/1.4.0.2.sql b/install-new/upgrade/sql/1.4.0.2.sql index b3f9ab89f..90ac0c70a 100644 --- a/install-new/upgrade/sql/1.4.0.2.sql +++ b/install-new/upgrade/sql/1.4.0.2.sql @@ -434,7 +434,7 @@ ALTER TABLE `PREFIX_country` ADD `zip_code_format` VARCHAR(12) NOT NULL DEFAULT ALTER TABLE `PREFIX_product` ADD `unit_price` DECIMAL(20,6) NOT NULL DEFAULT '0.000000' AFTER `wholesale_price`; ALTER TABLE `PREFIX_product` ADD `unity` VARCHAR(10) NOT NULL DEFAULT '0.000000' AFTER `unit_price` ; -ALTER TABLE `PREFIX_product_attribute` ADD `unit_price_impact`DECIMAL(17,2) NOT NULL DEFAULT '0.00' AFTER `weight`; +ALTER TABLE `PREFIX_product_attribute` ADD `unit_price_impact` DECIMAL(17,2) NOT NULL DEFAULT '0.00' AFTER `weight`; INSERT INTO `PREFIX_configuration` (`name`, `value`, `date_add`, `date_upd`) VALUES ('PS_VOLUME_UNIT', 'cl', NOW(), NOW()); diff --git a/install-new/upgrade/sql/1.4.4.0.sql b/install-new/upgrade/sql/1.4.4.0.sql index 1c632dd83..06165111b 100644 --- a/install-new/upgrade/sql/1.4.4.0.sql +++ b/install-new/upgrade/sql/1.4.4.0.sql @@ -56,9 +56,9 @@ ALTER TABLE `PREFIX_tax_rule` MODIFY `id_county` INT NOT NULL AFTER `id_country` UPDATE `PREFIX_address_format` set `format`='firstname lastname company address1 address2 -city, State:name postcode +city, State:name postcode Country:name -phone' +phone' WHERE `id_country` = (SELECT `id_country` FROM `PREFIX_country` WHERE `iso_code`='US'); ALTER TABLE `PREFIX_attachment` CHANGE `mime` `mime` VARCHAR(128) NOT NULL;