Skip to content

Commit

Permalink
fix: 추천 포스트 URL 길이 수정 및 FK 네임 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
nuyh99 committed Jul 28, 2023
1 parent 685a972 commit 6f22f8c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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)
);

0 comments on commit 6f22f8c

Please sign in to comment.