Skip to content

Commit deab085

Browse files
authored
hotfix : DataSource 컬럼 길이 변경 (#184)
1 parent ba58c4a commit deab085

File tree

1 file changed

+4
-4
lines changed
  • src/main/java/org/tuna/zoopzoop/backend/domain/datasource/entity

1 file changed

+4
-4
lines changed

src/main/java/org/tuna/zoopzoop/backend/domain/datasource/entity/DataSource.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ public class DataSource extends BaseEntity {
2222
private Folder folder;
2323

2424
//제목
25-
@Column
25+
@Column(length = 1000)
2626
private String title;
2727

2828
//요약
29-
@Column
29+
@Column(length = 1000)
3030
private String summary;
3131

3232
//소스 데이터의 작성일자
@@ -35,11 +35,11 @@ public class DataSource extends BaseEntity {
3535
private LocalDate dataCreatedDate;
3636

3737
//소스 데이터 URL
38-
@Column
38+
@Column(length = 2048)
3939
private String sourceUrl;
4040

4141
//썸네일 이미지 URL
42-
@Column
42+
@Column(length = 2048)
4343
private String imageUrl;
4444

4545
// 자료 출처 (동아일보, Tstory 등등)

0 commit comments

Comments
 (0)