Skip to content

Commit

Permalink
Merge pull request #115 from Modagbul/feat/mission-alarm
Browse files Browse the repository at this point in the history
fix : 인증물 글자수 제한 1000자 -> 4000byte
  • Loading branch information
seungueonn authored Dec 4, 2023
2 parents 5270ca1 + 8be42be commit e84953f
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, length = 1000)
@Column(nullable = false, length = 4000)
private String archive; //링크, 글, 사진 뭐든 가능

private Long count; // 횟수
Expand Down

0 comments on commit e84953f

Please sign in to comment.