rearrange gl table

This commit is contained in:
Paul Trowbridge 2018-09-17 23:38:33 -04:00
parent d04617cf2b
commit f47d13e815
2 changed files with 4 additions and 2 deletions

View File

@ -35,7 +35,8 @@ CREATE TABLE evt.gl (
,bpr_id INT REFERENCES evt.bpr (id)
,acct text REFERENCES evt.acct (acct)
,amount numeric (12,2)
,bpr jsonb
,gl_line INT
,bpr_extract JSONB
);
COMMENT ON COLUMN evt.gl.bpr_id IS 'id of initial basic pecuniary record';
COMMENT ON COLUMN evt.gl.acct IS 'account code';

View File

@ -5,7 +5,8 @@ CREATE TABLE evt.gl (
,bpr_id INT REFERENCES evt.bpr (id)
,acct text REFERENCES evt.acct (acct)
,amount numeric (12,2)
,bpr jsonb
,gl_line INT
,bpr_extract JSONB
);
COMMENT ON COLUMN evt.gl.bpr_id IS 'id of initial basic pecuniary record';
COMMENT ON COLUMN evt.gl.acct IS 'account code';