From 3a697eb4187f960ceeddec797b81e9a2acc9736b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=A0=9C=EC=9D=B4=EB=AF=B8?= <63184334+JJ503@users.noreply.github.com> Date: Thu, 21 Sep 2023 15:56:49 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=AA=BD=EC=A7=80=20=EC=8B=A0=EA=B3=A0?= =?UTF-8?q?=20fk=20=EC=88=98=EC=A0=95=20(#434)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../db/migration/V14__alter_chat_room_report_tables.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 backend/ddang/src/main/resources/db/migration/V14__alter_chat_room_report_tables.sql diff --git a/backend/ddang/src/main/resources/db/migration/V14__alter_chat_room_report_tables.sql b/backend/ddang/src/main/resources/db/migration/V14__alter_chat_room_report_tables.sql new file mode 100644 index 000000000..d0c52914e --- /dev/null +++ b/backend/ddang/src/main/resources/db/migration/V14__alter_chat_room_report_tables.sql @@ -0,0 +1,2 @@ +alter table chat_room_report drop index fk_chat_room_report_auction; +alter table chat_room_report add constraint fk_chat_room_report_chat_room foreign key (chat_room_id) references chat_room (id);