8 jours
7 jours
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;
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;