23 lines
996 B
SQL
23 lines
996 B
SQL
DROP TABLE IF EXISTS `ps_jxmegamenu_items`;
|
|
CREATE TABLE `ps_jxmegamenu_items` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`id_tab` int(11) NOT NULL,
|
|
`row` int(11) NOT NULL DEFAULT '1',
|
|
`col` int(11) NOT NULL DEFAULT '1',
|
|
`width` int(11) DEFAULT NULL,
|
|
`class` varchar(100) DEFAULT NULL,
|
|
`type` int(11) NOT NULL DEFAULT '0',
|
|
`is_mega` int(11) NOT NULL DEFAULT '0',
|
|
`settings` varchar(10000) DEFAULT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=318 DEFAULT CHARSET=utf8;
|
|
|
|
/* Scheme for table ps_jxmegamenu_items */
|
|
INSERT INTO `ps_jxmegamenu_items` VALUES
|
|
('37','3','1','1',NULL,NULL,'0','0','CAT34,CAT39,CAT43'),
|
|
('313','1','1','1','2','custom_col_2_min','0','1','CAT20'),
|
|
('314','1','1','2','2','custom_col_2_min','0','1','CAT26'),
|
|
('315','1','1','3','2','custom_col_2_min','0','1','CAT30'),
|
|
('316','1','1','4','2','custom_offset_1_xl custom_col_min_md','0','1','PRDI24'),
|
|
('317','1','1','5','4','custom_col_4_min custom_offset_1_xl custom_col_min_md','0','1','BNR1');
|