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

14 lines
418 B
MySQL
Raw Normal View History

2023-08-14 20:07:29 +08:00
alter table hrsa_tax_declaration add control_view int
GO
alter table hrsa_tax_declaration add tax_declare_record_id bigint
GO
alter table hrsa_salary_acct_emp add income_category nvarchar(100)
GO
alter table hrsa_salary_acct_record add control_view int
GO
update hrsa_salary_acct_record set control_view = 0 where control_view is null
GO
update hrsa_tax_declaration set control_view = 0 where control_view is null
GO