diff --git a/backend/src/main/resources/db/migration/V113__v1.19.3_release.sql b/backend/src/main/resources/db/migration/V113__v1.19.3_release.sql index 876f3b2cbe..45efacbc53 100644 --- a/backend/src/main/resources/db/migration/V113__v1.19.3_release.sql +++ b/backend/src/main/resources/db/migration/V113__v1.19.3_release.sql @@ -15,4 +15,17 @@ update project set case_template_id = ( where `global` = 1 and `system` = 1 and project_id = 'global' limit 1 -) where case_template_id is null or case_template_id = ''; \ No newline at end of file +) where case_template_id is null or case_template_id = ''; + +CREATE INDEX test_plan_test_case_plan_id_index + ON test_plan_test_case(plan_id); + +CREATE INDEX custom_field_template_field_id_index + ON custom_field_template(field_id); + +CREATE INDEX custom_field_template_template_id_index + ON custom_field_template(template_id); + +CREATE INDEX test_case_review_test_case_review_id_index + ON test_case_review_test_case(review_id); +