删除多余升级SQL

This commit is contained in:
zhangdaiscott 2026-08-24 11:41:17 +08:00
parent d39a9ce357
commit 2fe4d40041

View File

@ -1,8 +0,0 @@
-- ---date:20260625-----for: 字典索引修改
ALTER TABLE `jimu_dict`
DROP INDEX `uk_sd_dict_code`,
ADD INDEX `idx_jd_dict_code`(`dict_code`) USING BTREE,
ADD INDEX `idx_jd_tenant_id`(`tenant_id`) USING BTREE,
ADD INDEX `idx_jd_create_by`(`create_by`) USING BTREE,
ADD INDEX `idx_jd_dict_code_tenant_id`(`dict_code`, `tenant_id`) USING BTREE,
ADD INDEX `idx_jd_dict_code_create_by`(`dict_code`, `create_by`) USING BTREE;