Skip to content

Commit

Permalink
// missing meta & theme_meta
Browse files Browse the repository at this point in the history
  • Loading branch information
emilien-puget committed Mar 18, 2014
1 parent 5147b05 commit ef27ec2
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions install-dev/upgrade/sql/1.6.0.6.sql
@@ -1,3 +1,17 @@
SET NAMES 'utf8';

ALTER TABLE `PREFIX_order_invoice_tax` ADD INDEX (`id_tax`);

INSERT IGNORE INTO `PREFIX_meta` (`id_meta`, `page`, `configurable`) VALUES
(NULL, 'products-comparison', '1'),
(NULL, 'cms', '0'),
(NULL, 'category', '0'),
(NULL, 'product', '0'),
(NULL, 'module-bankwire-payment', '0'),
(NULL, 'module-bankwire-validation', '0'),
(NULL, 'module-cheque-validation', '0'),
(NULL, 'module-cheque-payment', '0');

INSERT IGNORE INTO `PREFIX_theme_meta` ( `id_theme` , `id_meta` , `left_column` , `right_column` )
SELECT `PREFIX_theme`.`id_theme` , `PREFIX_meta`.`id_meta` , `default_left_column` , `default_right_column`
FROM `PREFIX_theme` , `PREFIX_meta`;

0 comments on commit ef27ec2

Please sign in to comment.