2020-018-wzw-001.sql 1.3 KB

12345678910111213141516171819202122232425
  1. use `dcp`;
  2. UPDATE committee_basis_entity SET sort = NULL;
  3. UPDATE committee_basis_info SET sort = NULL;
  4. UPDATE committee_activity_entity SET sort = NULL;
  5. UPDATE committee_activity_info SET sort = NULL;
  6. UPDATE committee_information_release_management_entity SET sort = NULL;
  7. UPDATE committee_information_release_management_info SET sort = NULL;
  8. UPDATE committee_show_message_entity SET sort = NULL;
  9. UPDATE committee_show_message_info SET sort = NULL;
  10. alter table committee_basis_entity modify column sort BIGINT(20) DEFAULT 99 COMMENT '排序';
  11. alter table committee_basis_info modify column sort BIGINT(20) DEFAULT 99 COMMENT '排序';
  12. alter table committee_activity_entity modify column sort BIGINT(20) DEFAULT 99 COMMENT '排序';
  13. alter table committee_activity_info modify column sort BIGINT(20) DEFAULT 99 COMMENT '排序';
  14. alter table committee_information_release_management_entity modify column sort BIGINT(20) DEFAULT 99 COMMENT '排序';
  15. alter table committee_information_release_management_info modify column sort BIGINT(20) DEFAULT 99 COMMENT '排序';
  16. alter table committee_show_message_entity modify column sort BIGINT(20) DEFAULT 99 COMMENT '排序';
  17. alter table committee_show_message_info modify column sort BIGINT(20) DEFAULT 99 COMMENT '排序';
  18. /*161 已执行*/
  19. /*159 已执行 ljh 2020年11月30日 12:03:25*/