Correction gestion num commande fournisseur
This commit is contained in:
parent
c0f9562f6a
commit
3a47b0af19
@ -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;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user