29 lines
3.0 KiB
SQL
29 lines
3.0 KiB
SQL
DROP TABLE IF EXISTS `ps_jxmegalayout_extra_html_lang`;
|
|
CREATE TABLE `ps_jxmegalayout_extra_html_lang` (
|
|
`id_extra_html` int(11) NOT NULL AUTO_INCREMENT,
|
|
`id_lang` int(11) NOT NULL,
|
|
`name` varchar(100) DEFAULT NULL,
|
|
`content` text,
|
|
PRIMARY KEY (`id_extra_html`,`id_lang`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
|
|
|
|
/* Scheme for table ps_jxmegalayout_extra_html_lang */
|
|
INSERT INTO `ps_jxmegalayout_extra_html_lang` VALUES
|
|
('1','1','Example-empty',NULL),
|
|
('1','2','Example-empty',NULL),
|
|
('1','3','Example-empty',NULL),
|
|
('1','5','Example-empty',NULL),
|
|
('2','1','Free shipping','<div class=\"d-flex align-items-center\">\r\n<h3>Free shipping</h3>\r\n<span class=\"line-divider d-none d-xxl-block\"></span>\r\n<p>on all olders over $35*</p>\r\n</div>'),
|
|
('2','2','Free shipping','<div class=\"d-flex align-items-center\">\r\n<h3>Free shipping</h3>\r\n<span class=\"line-divider d-none d-xxl-block\"></span>\r\n<p>on all olders over $35*</p>\r\n</div>'),
|
|
('2','3','Free shipping','<div class=\"d-flex align-items-center\">\r\n<h3>Free shipping</h3>\r\n<span class=\"line-divider d-none d-xxl-block\"></span>\r\n<p>on all olders over $35*</p>\r\n</div>'),
|
|
('2','5','Free shipping','<div class=\"d-flex align-items-center\">\r\n<h3>Free shipping</h3>\r\n<span class=\"line-divider d-none d-xxl-block\"></span>\r\n<p>on all olders over $35*</p>\r\n</div>'),
|
|
('3','1','Button blog','<p><a href=\"index.php?fc=module&module=jxblog&controller=categories\" class=\"btn btn-secondary btn-lg\">View all blog</a></p>'),
|
|
('3','2','Button blog','<p><a href=\"index.php?fc=module&module=jxblog&controller=categories\" class=\"btn btn-secondary btn-lg\">View all blog</a></p>'),
|
|
('3','3','Button blog','<p><a href=\"index.php?fc=module&module=jxblog&controller=categories\" class=\"btn btn-secondary btn-lg\">View all blog</a></p>'),
|
|
('3','5','Button blog','<p><a href=\"index.php?fc=module&module=jxblog&controller=categories\" class=\"btn btn-secondary btn-lg\">View all blog</a></p>'),
|
|
('4','1','Bestseller','<h4>Discover the magic!</h4>\r\n<h2 class=\"h2 products-section-title\">Best<br />Sellers</h2>\r\n<p>Make your house a proper home with our range of furnishings and accessories.</p>'),
|
|
('4','2','Bestseller','<h4>Discover the magic!</h4>\r\n<h2 class=\"h2 products-section-title\">Best<br />Sellers</h2>\r\n<p>Make your house a proper home with our range of furnishings and accessories.</p>'),
|
|
('4','3','Bestseller','<h4>Discover the magic!</h4>\r\n<h2 class=\"h2 products-section-title\">Best<br />Sellers</h2>\r\n<p>Make your house a proper home with our range of furnishings and accessories.</p>'),
|
|
('4','5','Bestseller','<h4>Discover the magic!</h4>\r\n<h2 class=\"h2 products-section-title\">Best<br />Sellers</h2>\r\n<p>Make your house a proper home with our range of furnishings and accessories.</p>'),
|
|
('4','8','Bestseller','<h4>Discover the magic!</h4>\r\n<h2 class=\"h2 products-section-title\">Best<br />Sellers</h2>\r\n<p>Make your house a proper home with our range of furnishings and accessories.</p>');
|