Correction gestion num commande fournisseur

This commit is contained in:
Laurent Destailleur 2006-11-07 23:39:29 +00:00
parent c0f9562f6a
commit 3a47b0af19

View File

@ -265,6 +265,16 @@ update llx_const set value='mod_commande_diamant' where value='mod_commande_jade
insert into llx_const (name, value, type, visible) values ('FICHEINTER_ADDON', 'pacific','chaine',0);
alter table llx_propal_model_pdf rename to llx_document_model;
create table llx_document_model
(
rowid integer AUTO_INCREMENT PRIMARY KEY,
nom varchar(50),
type varchar(20) NOT NULL,
libelle varchar(255),
description text
)type=innodb;
alter table llx_document_model DROP PRIMARY KEY;
alter table llx_document_model add column rowid integer AUTO_INCREMENT PRIMARY KEY FIRST;
alter table llx_document_model add column type varchar(20) NOT NULL after nom;