48 lines
2.0 KiB
SQL
48 lines
2.0 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_salary_archive modify id bigint auto_increment;
|
|
alter table hrsa_salary_archive_tax_agent modify id bigint auto_increment;
|
|
alter table hrsa_salary_archive_item 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;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ALTER TABLE `ecology_hr`.`hrsa_salary_sob_default_item`
|
|
ADD COLUMN `sob_default_item_group_id` bigint(0) NOT NULL COMMENT '薪资账套默认薪资项目分类的id' AFTER `tenant_key`,
|
|
ADD COLUMN `sorted_index` int(0) NOT NULL COMMENT '显示顺序' AFTER `sob_default_item_group_id`;
|
|
|
|
|
|
|