Prepare select of type of line

This commit is contained in:
Laurent Destailleur 2009-03-08 23:39:02 +00:00
parent d8464dcc49
commit 9f6dff142b
2 changed files with 6 additions and 0 deletions

View File

@ -83,6 +83,10 @@ delete from llx_document_model where nom = 'huitre' and type = 'invoice';
drop table llx_don_projet;
alter table llx_facture_fourn_det add column date_start datetime DEFAULT NULL;
alter table llx_facture_fourn_det add column date_end datetime DEFAULT NULL;
-- V4.1 delete from llx_projet_task where fk_projet not in (select rowid from llx_projet);
-- V4.1 ALTER TABLE llx_projet_task ADD CONSTRAINT fk_projet_task_fk_projet FOREIGN KEY (fk_projet) REFERENCES llx_projet (rowid);

View File

@ -32,5 +32,7 @@ create table llx_facture_fourn_det
tva double(24,8) DEFAULT 0,
total_ttc double(24,8) DEFAULT 0,
product_type integer DEFAULT 0,
date_start datetime DEFAULT NULL, -- date debut si service
date_end datetime DEFAULT NULL, -- date fin si service
import_key varchar(14)
)type=innodb;