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

8 lines
201 B
SQL

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
;