Skip to content

Commit

Permalink
#328 [fix] UserMeetingSchedule 테이블 Auditing Time 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
sohyundoh committed Aug 27, 2024
1 parent 59cb642 commit 1556478
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.asap.server.persistence.domain.time;

import com.asap.server.persistence.domain.AuditingTimeEntity;
import com.asap.server.persistence.domain.enums.TimeSlot;
import jakarta.persistence.Column;
import jakarta.persistence.Entity;
Expand All @@ -18,7 +19,7 @@
@Entity
@Getter
@NoArgsConstructor(access = AccessLevel.PROTECTED)
public class UserMeetingSchedule {
public class UserMeetingSchedule extends AuditingTimeEntity {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
Expand Down

0 comments on commit 1556478

Please sign in to comment.