Skip to content

Commit

Permalink
Merge pull request #113 from cathaaaaand/dev
Browse files Browse the repository at this point in the history
fix: ν”„λ‘œν•„ μˆ˜μ • μ‹œ λ‹‰λ„€μž„ ν•„μˆ˜
  • Loading branch information
daeundada authored May 4, 2024
2 parents d624e4a + 0270da9 commit 7ff9a28
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,4 @@ public class ProfileRequestDTO {
String nation;

String image;

String phoneNumber;
}
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,4 @@ public class ProfileResponseDTO {
private String image; // 이미지 URL (λ―Έκ΅¬ν˜„)

private Boolean isAdmin;

private String phoneNumber;
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class User extends BaseTimeEntity {
@Column(length = 50, nullable = false)
private String username;

@Column(length = 50)
@Column(length = 50, nullable = false)
private String nickname;

@Column(length = 200, nullable = false)
Expand Down

0 comments on commit 7ff9a28

Please sign in to comment.