Skip to content

Commit

Permalink
Merge pull request #113 from Modagbul/feat/mission-alarm
Browse files Browse the repository at this point in the history
fix : 미션 인증 인증물 글자수 1000자 선언
  • Loading branch information
seungueonn authored Dec 4, 2023
2 parents 1e08f5b + d0e9c8e commit d621eec
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class MissionArchive extends BaseTimeEntity { // 1회 미션을 저장
@Enumerated(value = EnumType.STRING)
private MissionArchiveStatus status;

@Column(nullable = false)
@Column(nullable = false, length = 1000)
private String archive; //링크, 글, 사진 뭐든 가능

private Long count; // 횟수
Expand Down

0 comments on commit d621eec

Please sign in to comment.