From 3e95be5e71bf89f251918ba8e4f2903352f75c22 Mon Sep 17 00:00:00 2001 From: "Captain.B" Date: Sat, 18 Sep 2021 14:40:08 +0800 Subject: [PATCH] =?UTF-8?q?refactor(=E6=80=A7=E8=83=BD=E6=B5=8B=E8=AF=95):?= =?UTF-8?q?=20=E6=95=B0=E6=8D=AE=E8=A1=A8=E9=87=8C=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E7=B4=A2=E5=BC=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/db/migration/V95__v1.13_release.sql | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/backend/src/main/resources/db/migration/V95__v1.13_release.sql b/backend/src/main/resources/db/migration/V95__v1.13_release.sql index 220459202d..3c24abf711 100644 --- a/backend/src/main/resources/db/migration/V95__v1.13_release.sql +++ b/backend/src/main/resources/db/migration/V95__v1.13_release.sql @@ -91,3 +91,7 @@ CREATE TABLE IF NOT EXISTS `report_statistics` `update_time` bigint(13) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 COLLATE utf8mb4_general_ci; + +create index load_test_report_detail_report_id_index + on load_test_report_detail (report_id); +