Skip to content

Commit

Permalink
Merge pull request #91 from UMC-clutch/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
AlmondBreez3 authored Aug 16, 2023
2 parents 712a137 + 81eb6a7 commit 540b87f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/java/clutch/clutchserver/token/entity/Token.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,12 @@ public class Token {
private Long id;

private String grantType;

@Column(length = 1000)
private String accessToken;
private Long accessTokenExpirationTime;

@Column(length = 1000)
private String refreshToken;
private Long refreshTokenExpirationTime;

Expand Down
1 change: 1 addition & 0 deletions src/main/java/clutch/clutchserver/user/entity/User.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ public class User extends BaseDateEntity {

private String name;

@Column(name = "oauth2_id", length = 1000)
private String oauth2Id;

@Enumerated(EnumType.STRING)
Expand Down

0 comments on commit 540b87f

Please sign in to comment.