Skip to content
Snippets Groups Projects
Commit 1fcdbb24 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

New: Ajout de fk_projet dans table des contrats.

parent 22ddfd5f
No related branches found
No related tags found
No related merge requests found
......@@ -326,14 +326,16 @@ delete from llx_rights_def where id=73;
alter table llx_facturedet add fk_code_ventilation integer NOT NULL DEFAULT 0;
alter table llx_contrat change fk_user_cloture fk_user_cloture integer;
alter table llx_contrat change fk_user_cloture fk_user_cloture integer;
alter table llx_contrat change fk_user_mise_en_service fk_user_mise_en_service integer;
alter table llx_contrat add datec datetime after tms;
alter table llx_contrat add date_contrat datetime after datec;
alter table llx_contrat change enservice statut SMALLINT(6) DEFAULT 0;
alter table llx_contrat add fk_commercial_signature integer NOT NULL after fk_soc;
alter table llx_contrat change enservice statut smallint(6) default 0;
alter table llx_contrat add datec datetime after tms;
alter table llx_contrat add date_contrat datetime after datec;
alter table llx_contrat add fk_projet integer after fk_soc;
alter table llx_contrat add fk_commercial_signature integer NOT NULL after fk_projet;
alter table llx_contrat add fk_commercial_suivi integer NOT NULL after fk_commercial_signature;
alter table llx_contrat add facture smallint(6) default 0;
alter table llx_facturedet add date_start date;
alter table llx_facturedet add date_end date;
......
......@@ -33,11 +33,11 @@ create table llx_contrat
fin_validite datetime,
date_cloture datetime,
fk_soc integer NOT NULL,
fk_projet integer,
fk_commercial_signature integer NOT NULL,
fk_commercial_suivi integer NOT NULL,
fk_user_author integer NOT NULL default 0,
fk_user_mise_en_service integer,
fk_user_cloture integer
)type=innodb;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment