refactor(性能测试): 数据表里添加索引

This commit is contained in:
Captain.B 2021-09-18 14:40:08 +08:00 committed by 刘瑞斌
parent 334b607b94
commit 3e95be5e71
1 changed files with 4 additions and 0 deletions

View File

@ -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);