integrate fix for bug in insert_quant_purchase which cannot save private

fee
Conflicts:
	include/sql/patch/upgrade128.sql

Conflicts:
	include/sql/patch/upgrade128.sql
This commit is contained in:
Dany De Bontridder 2018-05-12 13:55:09 +02:00
parent f5f5e55296
commit 93d39e3c07

View file

@ -103,7 +103,7 @@ alter table jrn add currency_rate_ref numeric(20,6) default 1;
update jrn set currency_rate_ref=1;
ALTER TABLE public.jrn ADD CONSTRAINT jrn_currency_fk FOREIGN KEY (currency_id) REFERENCES public.currency(id) ON DELETE RESTRICT ON UPDATE RESTRICT;
insert into version (val,v_description) values (129,'Currency : create view , create tables ');
commit;