Suppression du champ fk_product

This commit is contained in:
Regis Houssin 2005-07-13 07:18:04 +00:00
parent dbcd760c02
commit fcf9a075b8
2 changed files with 2 additions and 6 deletions

View File

@ -30,7 +30,4 @@ ALTER TABLE llx_contrat ADD INDEX idx_contrat_fk_soc (fk_soc);
ALTER TABLE llx_contrat ADD INDEX idx_contrat_fk_user_author (fk_user_author);
ALTER TABLE llx_contrat ADD FOREIGN KEY (fk_soc) REFERENCES llx_societe (idp);
ALTER TABLE llx_contrat ADD FOREIGN KEY (fk_user_author) REFERENCES llx_user (rowid);
ALTER TABLE llx_contrat ADD INDEX idx_contrat_fk_product (fk_product);
ALTER TABLE llx_contrat ADD FOREIGN KEY (fk_product) REFERENCES llx_product (rowid);
ALTER TABLE llx_contrat ADD FOREIGN KEY (fk_user_author) REFERENCES llx_user (rowid);

View File

@ -37,8 +37,7 @@ create table llx_contrat
fk_commercial_suivi integer NOT NULL,
fk_user_author integer NOT NULL default 0,
fk_user_mise_en_service integer,
fk_user_cloture integer,
fk_product integer
fk_user_cloture integer
)type=innodb;