Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat : 웨이팅 생성 로직 구현 #26

Merged
merged 13 commits into from
Dec 31, 2023
4 changes: 2 additions & 2 deletions src/main/java/com/prgrms/catchtable/common/BaseEntity.java
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

단순 변수명 변경이기에, 커밋 유형이 style이면 어떨까 싶습니다~

Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
public abstract class BaseEntity {

@CreatedDate
private LocalDateTime createDate;
private LocalDateTime createdAt;

@LastModifiedDate
private LocalDateTime updateDate;
private LocalDateTime updatedAt;

}