patch sql : create table quant_fin and populate it

remove debug info
Acc_Ledger new property this->internal is set after a save
This commit is contained in:
Dany De Bontridder 2010-05-13 21:16:21 +00:00
parent 32b4fb0503
commit 33a9a1ee2b
5 changed files with 97 additions and 3 deletions

View file

@ -1,4 +1,6 @@
begin;
drop table if exists quant_fin;
CREATE TABLE quant_fin
(
qf_id bigserial NOT NULL,
@ -68,5 +70,14 @@ end;
$_$
language plpgsql;
select comptaproc.fill_quant_fin();
alter table del_jrn drop constraint jr_id;
alter table del_jrn add dj_id serial;
alter table del_jrn add constraint dj_id primary key(dj_id);
alter table del_jrnx drop constraint j_id;
alter table del_jrnx add djx_id serial;
alter table del_jrnx add constraint djx_id primary key(djx_id);
update version set val=77;
commit;