[+] BO : Added new class ConfigurationKPI for KPI cache storage
This commit is contained in:
@@ -440,6 +440,28 @@ CREATE TABLE `PREFIX_configuration_lang` (
|
||||
PRIMARY KEY (`id_configuration`,`id_lang`)
|
||||
) ENGINE=ENGINE_TYPE DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE `PREFIX_configuration_kpi` (
|
||||
`id_configuration_kpi` int(10) unsigned NOT NULL auto_increment,
|
||||
`id_shop_group` INT(11) UNSIGNED DEFAULT NULL,
|
||||
`id_shop` INT(11) UNSIGNED DEFAULT NULL,
|
||||
`name` varchar(32) NOT NULL,
|
||||
`value` text,
|
||||
`date_add` datetime NOT NULL,
|
||||
`date_upd` datetime NOT NULL,
|
||||
PRIMARY KEY (`id_configuration_kpi`),
|
||||
KEY `name` (`name`),
|
||||
KEY `id_shop` (`id_shop`),
|
||||
KEY `id_shop_group` (`id_shop_group`)
|
||||
) ENGINE=ENGINE_TYPE DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE `PREFIX_configuration_kpi_lang` (
|
||||
`id_configuration_kpi` int(10) unsigned NOT NULL,
|
||||
`id_lang` int(10) unsigned NOT NULL,
|
||||
`value` text,
|
||||
`date_upd` datetime default NULL,
|
||||
PRIMARY KEY (`id_configuration_kpi`,`id_lang`)
|
||||
) ENGINE=ENGINE_TYPE DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE `PREFIX_connections` (
|
||||
`id_connections` int(10) unsigned NOT NULL auto_increment,
|
||||
`id_shop_group` INT(11) UNSIGNED NOT NULL DEFAULT '1',
|
||||
|
||||
Reference in New Issue
Block a user