23 lines
988 B
SQL
23 lines
988 B
SQL
DROP TABLE IF EXISTS `ps_jxmegamenu`;
|
|
CREATE TABLE `ps_jxmegamenu` (
|
|
`id_item` int(11) NOT NULL AUTO_INCREMENT,
|
|
`id_shop` int(11) NOT NULL DEFAULT '1',
|
|
`sort_order` int(11) NOT NULL DEFAULT '0',
|
|
`specific_class` varchar(100) DEFAULT NULL,
|
|
`hook_name` varchar(100) DEFAULT NULL,
|
|
`is_mega` int(11) NOT NULL DEFAULT '0',
|
|
`is_simple` int(11) NOT NULL DEFAULT '0',
|
|
`is_custom_url` int(11) NOT NULL DEFAULT '0',
|
|
`active` int(11) NOT NULL DEFAULT '1',
|
|
`unique_code` varchar(100) DEFAULT NULL,
|
|
PRIMARY KEY (`id_item`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
|
|
|
|
/* Scheme for table ps_jxmegamenu */
|
|
INSERT INTO `ps_jxmegamenu` VALUES
|
|
('1','1','1','megamenu-resize','displayTop','1','0','0','1','it_99601110'),
|
|
('2','1','2',NULL,'displayTop','0','0','0','1','it_55260638'),
|
|
('3','1','3',NULL,'displayTop','0','1','0','1','it_73990155'),
|
|
('4','1','4',NULL,'displayTop','0','0','0','1','it_35521023'),
|
|
('5','1','5',NULL,'displayTop','0','0','0','1','it_46261955');
|