Bug : supplemental tax cannot be deleted

This commit is contained in:
sparkyx 2022-06-25 00:15:00 +02:00
parent 9473dcbcbf
commit 6e14b34867
2 changed files with 256 additions and 254 deletions

View file

@ -0,0 +1,7 @@
begin;
ALTER TABLE public.jrn_tax drop CONSTRAINT jrn_tax_fk ;
ALTER TABLE public.jrn_tax ADD CONSTRAINT jrn_tax_fk FOREIGN KEY (j_id) REFERENCES jrnx(j_id) on delete cascade on update cascade;
insert into version (val,v_description) values (174,'Supplemental tax : delete');
commit;