* New module budget * Detail for impress of account * Code rewrited * Group in analytic accountancy * Fix Bug
5 lines
396 B
SQL
5 lines
396 B
SQL
delete from tva_rate where tva_id in (select tva_id from tva_rate group by tva_id having count(tva_id) > 1);
|
|
alter table tva_rate add constraint tva_id_pk primary key (tva_id);
|
|
alter table quant_purchase add constraint qp_vat_code_fk foreign key(qp_vat_code) references tva_rate(tva_id);
|
|
alter table quant_sold add constraint qs_vat_code_fk foreign key(qs_vat_code) references tva_rate(tva_id);
|
|
|