18 lines
680 B
SQL
18 lines
680 B
SQL
--缴税人表主键自增
|
|
alter table hrsa_tax_agent modify id bigint auto_increment;
|
|
alter table hrsa_tax_rate_base modify id bigint auto_increment;
|
|
alter table hrsa_tax_rate_detail modify id bigint auto_increment;
|
|
alter table hrsa_add_up_deduction modify id bigint auto_increment;
|
|
alter table hrsa_add_up_situation modify id bigint auto_increment;
|
|
alter table hrsa_other_deduction modify id bigint auto_increment;
|
|
|
|
|
|
|
|
|
|
--福利方案主键自增增加
|
|
alter table hrsa_social_security_scheme modify id bigint auto_increment;
|
|
alter table hrsa_scheme_detail modify id bigint auto_increment;
|
|
alter table hrsa_insurance_category modify id bigint auto_increment;
|
|
|
|
|