Skip to content

Commit

Permalink
[Refactor] 테이블명 명시
Browse files Browse the repository at this point in the history
  • Loading branch information
hen715 committed May 2, 2024
1 parent 08f6867 commit 075a782
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class Fire extends BaseTimeEntity{

@Column
private String duration;
@Column
@Column(name = "average_duration")
private String averageDuration;
@Column
private Integer point;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class Notice {
@Column
private String writer;

@Column
@Column(name="create_date")
private String createDate;

@Column Long view;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public class Post extends BaseTimeEntity {
@Column
private Long view;

@Column
@Column(name="image_count")
private Long imageCount;


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class Reply extends BaseTimeEntity{
@Column
private Boolean anonymous;

@Column
@Column(name = "is_deleted")
private Boolean isDeleted;

@Column
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ public class Schedule {
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;

@Column
@Column(name="start_date")
private LocalDate startDate;

@Column
@Column(name="end_date")
private LocalDate endDate;

@Column
Expand Down

0 comments on commit 075a782

Please sign in to comment.