From d39a9ce357d21e5128dc90b33252083979e52552 Mon Sep 17 00:00:00 2001 From: zhangdaiscott Date: Mon, 24 Aug 2026 11:39:20 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A7=AF=E6=9C=A8=E6=8A=A5=E8=A1=A8=20?= =?UTF-8?q?=E5=8D=87=E7=BA=A7=20v2.5.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../flyway/sql/mysql/V3.9.5_1__jimureport_upgrade.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/flyway/sql/mysql/V3.9.5_1__jimureport_upgrade.sql diff --git a/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/flyway/sql/mysql/V3.9.5_1__jimureport_upgrade.sql b/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/flyway/sql/mysql/V3.9.5_1__jimureport_upgrade.sql new file mode 100644 index 000000000..a2203d355 --- /dev/null +++ b/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/flyway/sql/mysql/V3.9.5_1__jimureport_upgrade.sql @@ -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; \ No newline at end of file