Inital commit
This commit is contained in:
42
setup/update/tpl/2.1.0.sql.tpl
Normal file
42
setup/update/tpl/2.1.0.sql.tpl
Normal file
@@ -0,0 +1,42 @@
|
||||
SET FOREIGN_KEY_CHECKS = 0;
|
||||
|
||||
UPDATE `config` SET `value`='2.1.0' WHERE `name`='thelia_version';
|
||||
UPDATE `config` SET `value`='2' WHERE `name`='thelia_major_version';
|
||||
UPDATE `config` SET `value`='1' WHERE `name`='thelia_minus_version';
|
||||
UPDATE `config` SET `value`='0' WHERE `name`='thelia_release_version';
|
||||
UPDATE `config` SET `value`='' WHERE `name`='thelia_extra_version';
|
||||
|
||||
|
||||
UPDATE `config` SET `value`='1' WHERE `name`='cart.use_persistent_cookie';
|
||||
|
||||
-- Order
|
||||
|
||||
ALTER TABLE `order` ADD `postage_tax` FLOAT DEFAULT 0 NOT NULL AFTER `postage` ;
|
||||
ALTER TABLE `order` ADD `postage_tax_rule_title` VARCHAR(255) AFTER `postage_tax` ;
|
||||
|
||||
ALTER TABLE `order_version` ADD `postage_tax` FLOAT DEFAULT 0 NOT NULL AFTER `postage` ;
|
||||
ALTER TABLE `order_version` ADD `postage_tax_rule_title` VARCHAR(255) AFTER `postage_tax` ;
|
||||
|
||||
-- Hooks
|
||||
SELECT @max_id := IFNULL(MAX(`id`),0) FROM `hook`;
|
||||
|
||||
INSERT INTO `hook` (`id`, `code`, `type`, `by_module`, `block`, `native`, `activate`, `position`, `created_at`, `updated_at`) VALUES
|
||||
(@max_id + 1, 'brand.update-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
|
||||
(@max_id + 2, 'sale.edit-js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
|
||||
(@max_id + 3, 'api.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
|
||||
(@max_id + 4, 'api.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
|
||||
(@max_id + 5, 'api.delete-form', 2, 0, 0, 1, 1, 1, NOW(), NOW())
|
||||
;
|
||||
|
||||
INSERT INTO `hook_i18n` (`id`, `locale`, `title`, `description`, `chapo`) VALUES
|
||||
{foreach $locales as $locale}
|
||||
(@max_id + 1, '{$locale}', {intl l='Brand edit page - in the form' locale=$locale}, '', ''),
|
||||
(@max_id + 2, '{$locale}', {intl l='Sale edit page - javascript last call block' locale=$locale}, '', ''),
|
||||
(@max_id + 3, '{$locale}', {intl l='Api page - at top' locale=$locale}, '', ''),
|
||||
(@max_id + 4, '{$locale}', {intl l='Api page - at bottom' locale=$locale}, '', ''),
|
||||
(@max_id + 5, '{$locale}', {intl l='Api page - in deletion form' locale=$locale}, '', ''){if ! $locale@last},{/if}
|
||||
|
||||
{/foreach}
|
||||
;
|
||||
|
||||
SET FOREIGN_KEY_CHECKS = 1;
|
||||
Reference in New Issue
Block a user