Ajout du champs gencode pour les codes barre

This commit is contained in:
Regis Houssin 2006-02-15 08:49:53 +00:00
parent 51dc46d463
commit 77926190ab
2 changed files with 4 additions and 1 deletions

View File

@ -26,3 +26,5 @@ alter table llx_propal add column note_public text after note;
ALTER TABLE llx_societe ADD mode_reglement INT( 11 ) DEFAULT NULL ;
ALTER TABLE llx_societe ADD cond_reglement INT( 11 ) DEFAULT '1' NOT NULL ;
alter table llx_product add gencode varchar(255) DEFAULT NULL;

View File

@ -38,7 +38,8 @@ create table llx_product
duration varchar(6),
stock_propale integer DEFAULT 0,
stock_commande integer DEFAULT 0,
seuil_stock_alerte integer DEFAULT 0
seuil_stock_alerte integer DEFAULT 0,
gencode varchar(255) DEFAULT NULL
)type=innodb;