10 lines
297 B
SQL
10 lines
297 B
SQL
DROP TABLE IF EXISTS `ps_jxmegamenu_html_lang`;
|
|
CREATE TABLE `ps_jxmegamenu_html_lang` (
|
|
`id_item` int(10) unsigned NOT NULL,
|
|
`id_lang` int(11) NOT NULL,
|
|
`title` varchar(100) DEFAULT NULL,
|
|
`content` text NOT NULL,
|
|
PRIMARY KEY (`id_item`,`id_lang`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|