Logo
Eolia @eolia
8 jours
herve_02 @herve_02
7 jours
a répondu au Message de Eolia - 7 jours
Eolia @eolia
7 jours
a répondu au Message de herve_02 il y a 7 jours
herve_02 @herve_02
7 jours
a répondu au Message de Eolia - 7 jours
Eolia @eolia
a répondu au Message de herve_02 il y a 7 jours
Schéma de la table au cas où:

CREATE TABLE `PREFIX_image_type` (
`id_image_type` int(11) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(64) NOT NULL,
`width` int(11) unsigned NOT NULL,
`height` int(11) unsigned NOT NULL,
`products` tinyint(1) NOT NULL DEFAULT 1,
`categories` tinyint(1) NOT NULL DEFAULT 1,
`manufacturers` tinyint(1) NOT NULL DEFAULT 1,
`suppliers` tinyint(1) NOT NULL DEFAULT 1,
`scenes` tinyint(1) NOT NULL DEFAULT 1,
`stores` tinyint(1) NOT NULL DEFAULT 1,
PRIMARY KEY (`id_image_type`),
KEY `image_type_name` (`name`)
) ENGINE=ENGINE_TYPE DEFAULT CHARSET=utf8mb4 COLLATION;