Skip to content

Commit 2926670

Browse files
committed
fix: 추천 포스트 URL 길이 수정 및 FK 네임 변경
#1397
1 parent 089e9ba commit 2926670

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

backend/src/main/resources/db/migration/prod/V4__alter_table_keyword_reference.sql

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ drop table prolog.keyword_reference;
33
create table if not exists prolog.recommended_post
44
(
55
id bigint auto_increment primary key,
6-
url varchar(255) not null,
6+
url varchar(512) not null,
77
keyword_id bigint not null,
8-
constraint FK_KEYWORD_ID
8+
constraint FK_RECOMMENDED_POST_PARENT_KEYWORD_ID
99
foreign key (keyword_id) references prolog.keyword (id)
1010
);

0 commit comments

Comments
 (0)