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

16 lines
413 B
SQL

alter table hrsa_tax_declaration add control_view int
;
alter table hrsa_tax_declaration add tax_declare_record_id bigint
;
alter table hrsa_salary_acct_emp add income_category varchar(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
;