21 lines
1.0 KiB
SQL
21 lines
1.0 KiB
SQL
DROP TABLE IF EXISTS `ps_psreassurance`;
|
|
CREATE TABLE `ps_psreassurance` (
|
|
`id_psreassurance` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|
`icon` varchar(255) DEFAULT NULL,
|
|
`custom_icon` varchar(255) DEFAULT NULL,
|
|
`status` int(10) unsigned NOT NULL,
|
|
`position` int(10) unsigned NOT NULL,
|
|
`id_shop` int(10) unsigned NOT NULL,
|
|
`type_link` int(10) unsigned DEFAULT NULL,
|
|
`id_cms` int(10) unsigned DEFAULT NULL,
|
|
`date_add` datetime NOT NULL,
|
|
`date_upd` datetime DEFAULT NULL,
|
|
PRIMARY KEY (`id_psreassurance`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
|
|
|
|
/* Scheme for table ps_psreassurance */
|
|
INSERT INTO `ps_psreassurance` VALUES
|
|
('1',NULL,'/gifts/modules/blockreassurance/views/img/img_perso/logo.png','1','1','1','0','0','2020-02-10 08:18:29','2020-02-10 08:18:29'),
|
|
('2','/gifts/modules/blockreassurance/img/ic_local_shipping_black_36dp_1x.png',NULL,'1','2','1',NULL,NULL,'2020-02-10 15:05:40',NULL),
|
|
('3','/gifts/modules/blockreassurance/img/ic_swap_horiz_black_36dp_1x.png',NULL,'1','3','1',NULL,NULL,'2020-02-10 15:05:40',NULL);
|