From cbe1728fdeeea0cf20b7705569a677c3db5cd17d Mon Sep 17 00:00:00 2001 From: Ethan Date: Wed, 11 Oct 2023 10:52:49 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20flyway=EC=97=90=20review=20status=20enu?= =?UTF-8?q?m=20=EC=B6=94=EA=B0=80=ED=95=98=EB=8A=94=20=EA=B8=B0=EB=8A=A5?= =?UTF-8?q?=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../V20231011__create_review_status_index_on_runner_post.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 backend/baton/src/main/resources/db/migration/V20231011__create_review_status_index_on_runner_post.sql diff --git a/backend/baton/src/main/resources/db/migration/V20231011__create_review_status_index_on_runner_post.sql b/backend/baton/src/main/resources/db/migration/V20231011__create_review_status_index_on_runner_post.sql new file mode 100644 index 000000000..05fbc5f41 --- /dev/null +++ b/backend/baton/src/main/resources/db/migration/V20231011__create_review_status_index_on_runner_post.sql @@ -0,0 +1,2 @@ +create index idx_runner_post_review_status on runner_post (review_status); +