From 2926670798ab4d4bc2775ba2db80986d7d020bd0 Mon Sep 17 00:00:00 2001 From: nuyh Date: Fri, 28 Jul 2023 16:52:28 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=B6=94=EC=B2=9C=20=ED=8F=AC=EC=8A=A4?= =?UTF-8?q?=ED=8A=B8=20URL=20=EA=B8=B8=EC=9D=B4=20=EC=88=98=EC=A0=95=20?= =?UTF-8?q?=EB=B0=8F=20FK=20=EB=84=A4=EC=9E=84=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #1397 --- .../db/migration/prod/V4__alter_table_keyword_reference.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/src/main/resources/db/migration/prod/V4__alter_table_keyword_reference.sql b/backend/src/main/resources/db/migration/prod/V4__alter_table_keyword_reference.sql index 0ff33a5b0..99090b659 100644 --- a/backend/src/main/resources/db/migration/prod/V4__alter_table_keyword_reference.sql +++ b/backend/src/main/resources/db/migration/prod/V4__alter_table_keyword_reference.sql @@ -3,8 +3,8 @@ drop table prolog.keyword_reference; create table if not exists prolog.recommended_post ( id bigint auto_increment primary key, - url varchar(255) not null, + url varchar(512) not null, keyword_id bigint not null, - constraint FK_KEYWORD_ID + constraint FK_RECOMMENDED_POST_PARENT_KEYWORD_ID foreign key (keyword_id) references prolog.keyword (id) );