Restructure file , remove html/admin , backup ...

This commit is contained in:
Dany De Bontridder 2015-10-18 23:39:20 +02:00
parent b57df7c0e8
commit 896f3624c7
169 changed files with 48 additions and 54 deletions

View file

@ -0,0 +1,15 @@
begin;
ALTER TABLE operation_analytique ADD COLUMN oa_jrnx_id_source bigint;
COMMENT ON COLUMN operation_analytique.oa_jrnx_id_source IS 'jrnx.j_id source of this amount, this amount is computed from an amount giving a ND VAT.Normally NULL is there is no ND VAT.';
ALTER TABLE operation_analytique ADD COLUMN oa_signed character(1);
ALTER TABLE operation_analytique ALTER COLUMN oa_signed SET DEFAULT 'Y'::bpchar;
update operation_analytique set oa_signed='Y';
ALTER TABLE operation_analytique ALTER COLUMN oa_signed SET NOT NULL;
COMMENT ON COLUMN operation_analytique.oa_signed IS 'Sign of the amount';
update version set val=113;
commit;