Skip to content

Commit

Permalink
Merge pull request #67 from studio-recoding/feat-persona-api
Browse files Browse the repository at this point in the history
[🔧fix] 기본키 이름이 적용되어 있지 않던 문제 해결
  • Loading branch information
JeonHaeseung authored May 15, 2024
2 parents 2b5ad17 + 1640efa commit d45254b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public class Member {
private List<Chat> chats = new ArrayList<>();

@OneToMany(mappedBy = "member")
private List<ReportTag> reportTags = new ArrayList<>();
private List<ReportTag> re = new ArrayList<>();

@OneToMany(mappedBy = "member")
private List<ReportMemory> reportMemories = new ArrayList<>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
public class ReportActivity {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "report_activity_id")
private Long id;

private ZonedDateTime createdDate;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
public class ReportRecommend {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "report_recommend_id")
private Long id;

private ZonedDateTime createdDate;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
public class ReportTag {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "report_tag_id")
private Long id;

private String tagTitle;
Expand Down

0 comments on commit d45254b

Please sign in to comment.