Skip to content

Commit

Permalink
[Fix] #291 - User 엔티티 @column 길이 512로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
its-sky committed Jun 5, 2024
1 parent 41415e2 commit 7824585
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class User {
@Column(nullable = false)
private String name;

@Column(nullable = false)
@Column(nullable = false, length = 512)
private String imageUrl;

private String email;
Expand Down

0 comments on commit 7824585

Please sign in to comment.