8 lines
201 B
MySQL
8 lines
201 B
MySQL
|
|
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
|
||
|
|
;
|