Task #8618: add field model_pdf to facture_fourn table

This commit is contained in:
Juanjo Menent 2010-10-15 15:44:42 +00:00
parent 2b3720611d
commit f9d5e6fc27
2 changed files with 2 additions and 0 deletions

View File

@ -80,6 +80,7 @@ ALTER TABLE llx_ecm_documents ADD UNIQUE INDEX idx_ecm_documents (fullpath_dol);
--Add modules facture fournisseur
insert into llx_const (name, value, type, note, visible) values ('INVOICE_SUPPLIER_ADDON_PDF', 'canelle','chaine','',0);
ALTER TABLE llx_facture_fourn ADD COLUMN model_pdf varchar(50) after note_public;
create table llx_c_ziptown
(

View File

@ -61,6 +61,7 @@ create table llx_facture_fourn
note text,
note_public text,
model_pdf varchar(50),
import_key varchar(14)
)type=innodb;