Skip to content

Commit

Permalink
fix: excerpt 컬럼 길이 255 -> 512 변경 (#26) (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
seokjin8678 authored Dec 23, 2023
1 parent 40fb0ad commit 7c822ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/resources/db/migration/V1__init_news.sql
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ CREATE TABLE content
language VARCHAR(255) NOT NULL,
content TEXT NOT NULL,
title VARCHAR(255) NOT NULL,
excerpt VARCHAR(255) NULL,
excerpt VARCHAR(512) NULL,
CONSTRAINT pk_content PRIMARY KEY (sequence)
);

Expand All @@ -18,7 +18,7 @@ CREATE TABLE news
published_at DATETIME NOT NULL,
support_languages VARCHAR(255) NOT NULL,
title VARCHAR(255) NOT NULL,
excerpt VARCHAR(255) NULL,
excerpt VARCHAR(512) NULL,
CONSTRAINT pk_news PRIMARY KEY (id)
);

Expand Down

0 comments on commit 7c822ea

Please sign in to comment.