35 lines
1.5 KiB
SQL
35 lines
1.5 KiB
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_attend_quote_field modify id bigint auto_increment;
|
|
alter table hrsa_attend_quote_sync_set modify id bigint auto_increment;
|
|
|
|
alter table hrsa_salary_item modify id bigint auto_increment;
|
|
alter table hrsa_salary_sob modify id bigint auto_increment;
|
|
alter table hrsa_salary_sob_range modify id bigint auto_increment;
|
|
alter table hrsa_salary_sob_item_group modify id bigint auto_increment;
|
|
alter table hrsa_salary_sob_emp_field modify id bigint auto_increment;
|
|
alter table hrsa_salary_sob_adjust_rule modify id bigint auto_increment;
|
|
alter table hrsa_salary_sob_check_rule modify id bigint auto_increment;
|
|
alter table hrsa_salary_archive_dimission 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;
|
|
|
|
|
|
--福利台账
|
|
alter table hrsa_social_archives modify id bigint auto_increment;
|
|
alter table hrsa_fund_archives modify id bigint auto_increment;
|
|
alter table hrsa_other_archives modify id bigint auto_increment;
|
|
|
|
|
|
|