Skip to content

Commit

Permalink
fix: entity 설정 원복
Browse files Browse the repository at this point in the history
  • Loading branch information
kelly6bf committed Sep 27, 2024
1 parent f8b6927 commit 65e9e55
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/src/main/java/site/coduo/member/domain/Member.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class Member extends BaseTimeEntity {
@Column(name = "ID", nullable = false)
private Long id;

@Column(length = 1000, name = "ACCESS_TOKEN", nullable = false)
@Column(name = "ACCESS_TOKEN", nullable = false)
private String accessToken;

@Column(name = "PROVIDER_LOGIN_ID", nullable = false)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public class PairRoomEntity extends BaseTimeEntity {
@Column(name = "DRIVER", nullable = false)
private String driver;

@Column(length = 1000, name = "ACCESS_CODE", nullable = false, unique = true)
@Column(name = "ACCESS_CODE", nullable = false, unique = true)
private String accessCode;

@Builder
Expand Down

0 comments on commit 65e9e55

Please sign in to comment.