We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba58c4a commit deab085Copy full SHA for deab085
src/main/java/org/tuna/zoopzoop/backend/domain/datasource/entity/DataSource.java
@@ -22,11 +22,11 @@ public class DataSource extends BaseEntity {
22
private Folder folder;
23
24
//제목
25
- @Column
+ @Column(length = 1000)
26
private String title;
27
28
//요약
29
30
private String summary;
31
32
//소스 데이터의 작성일자
@@ -35,11 +35,11 @@ public class DataSource extends BaseEntity {
35
private LocalDate dataCreatedDate;
36
37
//소스 데이터 URL
38
+ @Column(length = 2048)
39
private String sourceUrl;
40
41
//썸네일 이미지 URL
42
43
private String imageUrl;
44
45
// 자료 출처 (동아일보, Tstory 등등)
0 commit comments