14 lines
456 B
SQL
14 lines
456 B
SQL
DROP TABLE IF EXISTS `ps_jxmegalayout_extra_html`;
|
|
CREATE TABLE `ps_jxmegalayout_extra_html` (
|
|
`id_extra_html` int(11) NOT NULL AUTO_INCREMENT,
|
|
`specific_class` text,
|
|
PRIMARY KEY (`id_extra_html`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
|
|
|
|
/* Scheme for table ps_jxmegalayout_extra_html */
|
|
INSERT INTO `ps_jxmegalayout_extra_html` VALUES
|
|
('1','is-empty-wrapper'),
|
|
('2','html-nav'),
|
|
('3','html-btn'),
|
|
('4','html-block bestseller-baner');
|