From 048cf34707f9b345ea018bc599f301ade8396abc Mon Sep 17 00:00:00 2001 From: andrew Date: Mon, 3 Feb 2025 02:37:18 +0900 Subject: [PATCH] =?UTF-8?q?CLAP-220=20Fix:=20Label=20Color=20Flyway=20?= =?UTF-8?q?=EC=8A=A4=ED=81=AC=EB=A6=BD=ED=8A=B8=20=EC=9E=91=EC=84=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dev/V20250203227__Modify_Label_Color_From_Label.sql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 src/main/resources/db/migration/dev/V20250203227__Modify_Label_Color_From_Label.sql diff --git a/src/main/resources/db/migration/dev/V20250203227__Modify_Label_Color_From_Label.sql b/src/main/resources/db/migration/dev/V20250203227__Modify_Label_Color_From_Label.sql new file mode 100644 index 00000000..57bfc54e --- /dev/null +++ b/src/main/resources/db/migration/dev/V20250203227__Modify_Label_Color_From_Label.sql @@ -0,0 +1,3 @@ +alter table label + modify label_color enum ('BLUE', 'GREEN', 'GREY', 'ORANGE', 'PURPLE', 'RED', 'YELLOW', 'INDIGO') + not null; \ No newline at end of file