积木报表 升级 v2.5.1

This commit is contained in:
zhangdaiscott 2026-08-24 11:39:20 +08:00
parent fd8dae13fa
commit d39a9ce357

View File

@ -0,0 +1,8 @@
-- ---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;