19 lines
423 B
SQL
19 lines
423 B
SQL
alter table hrsa_tax_declaration add tax_declare_record_id number;
|
|
/
|
|
|
|
alter table hrsa_tax_declaration add control_view int;
|
|
/
|
|
|
|
alter table hrsa_salary_acct_emp add income_category varchar2(100);
|
|
/
|
|
|
|
alter table hrsa_salary_acct_record add control_view int;
|
|
/
|
|
|
|
update hrsa_salary_acct_record set control_view = 0 where control_view is null;
|
|
/
|
|
|
|
update hrsa_tax_declaration set control_view = 0 where control_view is null;
|
|
/
|
|
|