Skip to content

Commit

Permalink
#87 fix: Comment 대체키 수정
Browse files Browse the repository at this point in the history
id -> Long 타입
token -> String 타입
  • Loading branch information
rivkode committed Jun 10, 2024
1 parent a4adcec commit 8ad9810
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ public class Apply {
@Column(name = "apply_id")
private Long id;

@Column(name = "apply_token")
private String applyToken;

@ManyToOne(fetch = FetchType.LAZY)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ public class ChatRoom {
@Column(name = "chat_room_id")
private Long id;

@Column(name = "chat_room_token")
private String chatRoomToken;

@ManyToOne(fetch = FetchType.LAZY)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ public class Comment extends BaseTime {

@Id
@Column(name = "comment_id")
private String id;
private Long id;

@Column(name = "comment_token")
private String commentToken;

@Embedded
private CommentContent comment;
Expand Down

0 comments on commit 8ad9810

Please sign in to comment.