Skip to content

Commit

Permalink
fix: @column 관련 런타임 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
deepredk committed Oct 17, 2023
1 parent 77a2ffe commit c2dcb85
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/java/it/numble/hittracker/entity/DailyHitLog.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ public class DailyHitLog {
@Column(nullable = false)
private int dailyHit;
@ManyToOne
@JoinColumn(name = "url_id")
@Column(nullable = false)
@JoinColumn(name = "url_id", nullable = false)
private Url url;

public DailyHitLog(LocalDate date, int dailyHit, Url url) {
Expand Down

0 comments on commit c2dcb85

Please sign in to comment.