Skip to content

Requête de mise a jour vers 3.2.3

Gérits Aurélien edited this page Jan 28, 2020 · 5 revisions

add new table plugins_module :

CREATE TABLE IF NOT EXISTS `mc_plugins_module` (
  `id_module` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
  `plugin_name` varchar(200) NOT NULL,
  `module_name` varchar(200) NOT NULL,
  `active` smallint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id_module`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;

Add new setting for catalog

INSERT INTO `mc_setting` 
(`id_setting`, `name`, `value`, `type`, `label`, `category`) 
VALUES
(NULL, 'vat_rate', '21', 'float', 'VAT Rate', 'catalog'),
(NULL, 'price_display', 'tinc', 'string', 'Price display with or without tax included', 'catalog');