weaver-hrm-salary/resource/sqlupgrade/DM/sql202308110303.sql

19 lines
423 B
MySQL
Raw Normal View History

2023-08-14 20:07:29 +08:00
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;
/