[+] BO : AdminModules Preferences

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@12645 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
fSerny
2012-01-24 15:39:10 +00:00
parent 4c7e9db289
commit ab58a21ccb
14 changed files with 243 additions and 40 deletions
+11
View File
@@ -20,3 +20,14 @@ CREATE TABLE `PREFIX_category_shop` (
/* PHP:generate_root_category_for_multishop(); */;
CREATE TABLE `PREFIX_module_preference` (
`id_module_preference` int(11) NOT NULL auto_increment,
`id_employee` int(11) NOT NULL,
`module` varchar(255) NOT NULL,
`interest` tinyint(1) default NULL,
`favorite` tinyint(1) default NULL,
PRIMARY KEY (`id_module_preference`),
UNIQUE KEY `employee_module` (`id_employee`, `module`)
) ENGINE=ENGINE_TYPE DEFAULT CHARSET=utf8;