From e9bd44c131571df8c339dc1f9984f5fd6eafd512 Mon Sep 17 00:00:00 2001 From: KyungMin Lee Date: Sat, 23 Mar 2024 22:11:13 +0900 Subject: [PATCH] =?UTF-8?q?[REFACT]=20flyway=20=EC=A0=81=EC=9A=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/resources/db/migration/V5_notification_tag.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 src/main/resources/db/migration/V5_notification_tag.sql diff --git a/src/main/resources/db/migration/V5_notification_tag.sql b/src/main/resources/db/migration/V5_notification_tag.sql new file mode 100644 index 00000000..7dd1b3a5 --- /dev/null +++ b/src/main/resources/db/migration/V5_notification_tag.sql @@ -0,0 +1,2 @@ +alter table user_tb modify region enum ('JONGNO', 'JUNG', 'YONGSAN', 'SEONGDONG', 'GWANGJIN', 'DONGDAEMUN', 'JUNGNANG', 'SEONGBUK', 'GANGBUK', 'DOBONG', 'NOWON', 'EUNPYEONG', 'SEODAEMUN', 'MAPO', 'YANGCHEON', 'GANGSEO', 'GURO', 'GEUMCHEON', 'YEONGDEUNGPO', 'DONGJAK', 'GWANAK', 'SEOCHO', 'GANGNAM', 'SONGPA', 'GANGDONG', 'BUNDANG') null; +alter table notification_tb modify tag enum ('ACHIEVEMENT', 'REQUEST_ARRIVAL', 'MATCHING_FINISHED', 'MATCHING_SUCCESS', 'MATCHING_FAILED', 'REVIEW_REQUEST') null; \ No newline at end of file