first commit

This commit is contained in:
2024-10-28 22:14:22 +01:00
commit b65352c452
40581 changed files with 5712079 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
DROP TABLE IF EXISTS `ps_jxnewsletter`;
CREATE TABLE `ps_jxnewsletter` (
`id_jxnewsletter` int(11) NOT NULL AUTO_INCREMENT,
`id_guest` int(11) NOT NULL,
`id_user` int(11) NOT NULL,
`id_shop` int(11) NOT NULL,
`status` int(1) NOT NULL,
PRIMARY KEY (`id_jxnewsletter`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
/* Scheme for table ps_jxnewsletter */
INSERT INTO `ps_jxnewsletter` VALUES
('2','0','3','1','0'),
('5','5','0','1','0'),
('6','9','0','1','0'),
('7','10','0','1','0'),
('8','4','0','1','0'),
('9','3','0','1','0'),
('10','27981','0','1','0');