Skip to content

Commit

Permalink
refactor: 유저 엔티티 리프레시 토큰 칼럼 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
zzu-yaaa committed Jul 21, 2024
1 parent 9b316aa commit b5f18fd
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,6 @@ public class User extends BaseTimeEntity {
@Column(nullable = false)
private String githubId;

@Column
private String refreshToken;

@Column
private String profileImage;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ public User createNewUser(OAuth2User oAuth2User, String refreshToken) {
.githubId(githubId)
.username(username)
.profileImage(profileImage)
.refreshToken(refreshToken)
.build();

User savedUser = userRepository.save(user);
Expand Down

0 comments on commit b5f18fd

Please sign in to comment.