Task #1457 & 1281 : operation ouverture séparée
This commit is contained in:
parent
e892d79c53
commit
6c00cee4be
17 changed files with 192 additions and 72 deletions
|
|
@ -89,4 +89,10 @@ insert into user_active_security (us_login,us_ledger,us_action) select user_nam
|
|||
alter table jrn_def add jrn_enable int;
|
||||
alter table jrn_def alter jrn_enable set default 1;
|
||||
update jrn_def set jrn_enable=1;
|
||||
comment on column jrn_def.jrn_enable is 'Set to 1 if the ledger is enable ';
|
||||
comment on column jrn_def.jrn_enable is 'Set to 1 if the ledger is enable ';
|
||||
|
||||
|
||||
alter table jrn add jr_optype varchar(3);
|
||||
alter table jrn alter jr_optype set default 'NOR';
|
||||
comment on column jrn.jr_optype is 'Type of operation , NOR = NORMAL , OPE opening , EXT extourne, CLO closing';
|
||||
update jrn set jr_optype='NOR';
|
||||
Loading…
Add table
Add a link
Reference in a new issue