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

8 lines
201 B
MySQL
Raw Normal View History

2023-07-20 09:58:27 +08:00
alter table hrsa_tax_agent add tax_cycle_type int
;
alter table hrsa_tax_agent modify column tax_cycle_type int default 3
;
update hrsa_tax_agent set tax_cycle_type = 3 where tax_cycle_type is null
;