From 85e2a1f3717af264875b33b9f2a99f0477add1ad Mon Sep 17 00:00:00 2001 From: Hyeonsu Lee <127578418+20HyeonsuLee@users.noreply.github.com> Date: Tue, 16 Apr 2024 09:29:05 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=EC=9D=B4=EB=B2=A4=ED=8A=B8=EB=A9=94?= =?UTF-8?q?=EB=89=B4=20->=20=EC=B6=94=EC=B2=9C=EB=A9=94=EB=89=B4,=20?= =?UTF-8?q?=EB=8C=80=ED=91=9C=EB=A9=94=EB=89=B4=20->=20=EB=A9=94=EC=9D=B8?= =?UTF-8?q?=20=EB=A9=94=EB=89=B4=20update=20flyway=20=EC=B6=94=EA=B0=80=20?= =?UTF-8?q?(#424)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: HyeonsuLee --- .../V12__alter_menu_categories_update_category_name.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 src/main/resources/db/migration/V12__alter_menu_categories_update_category_name.sql diff --git a/src/main/resources/db/migration/V12__alter_menu_categories_update_category_name.sql b/src/main/resources/db/migration/V12__alter_menu_categories_update_category_name.sql new file mode 100644 index 0000000000..b8609047bc --- /dev/null +++ b/src/main/resources/db/migration/V12__alter_menu_categories_update_category_name.sql @@ -0,0 +1,2 @@ +update `shop_menu_categories` set name = '추천 메뉴' where name = '이벤트 메뉴'; +update `shop_menu_categories` set name = '메인 메뉴' where name = '대표 메뉴';