1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
| id_produit INT(11) NOT NULL AUTO_INCREMENT,
stock_reel INT(11) DEFAULT 0,
stock_provisoire INT(11) DEFAULT NULL,
provenance VARCHAR(10) DEFAULT NULL,
famille VARCHAR(11) DEFAULT NULL,
nom VARCHAR(75) DEFAULT NULL,
calibre INT(3) DEFAULT NULL,
aspect VARCHAR(9) DEFAULT NULL,
duree VARCHAR(4) DEFAULT NULL,
categorie VARCHAR(2) DEFAULT NULL,
no_agr VARCHAR(150) DEFAULT NULL,
dst_secu INT(3) DEFAULT NULL,
ma DECIMAL(6, 1) DEFAULT NULL,
nb_proj INT(3) DEFAULT NULL,
ref_pando VARCHAR(13) DEFAULT NULL,
fournisseurs VARCHAR(11) DEFAULT NULL,
ref_fournisseurs VARCHAR(100) DEFAULT NULL,
prix_achat DECIMAL(4, 1) DEFAULT NULL,
code_ean BIGINT(13) DEFAULT NULL,
poid_brut VARCHAR(10) DEFAULT NULL,
produits_par_carton VARCHAR(10) DEFAULT NULL,
prix_par_carton VARCHAR(10) DEFAULT NULL,
qty_commande INT(11) DEFAULT 0,
date_dispo DATE DEFAULT '0000-00-00',
reservation_sur_commande INT(11) DEFAULT 0,
PRIMARY KEY (id_produit) |
Partager