Skip to content

Commit

Permalink
feat: #44 PlaylistTrack BaseEntity 상속
Browse files Browse the repository at this point in the history
  • Loading branch information
dgh06175 committed Sep 19, 2024
1 parent c5eda3f commit 00d0bdf
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package com.cabin.plat.domain.playlist.entity;

import com.cabin.plat.domain.track.entity.Track;
import com.cabin.plat.global.common.BaseEntity;
import jakarta.persistence.*;
import lombok.*;
import org.hibernate.annotations.SQLRestriction;
Expand All @@ -11,7 +12,7 @@
@NoArgsConstructor(access = AccessLevel.PROTECTED)
@AllArgsConstructor
@SQLRestriction("deleted_at is null")
public class PlaylistTrack {
public class PlaylistTrack extends BaseEntity {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "track_playlist_id")
Expand Down

0 comments on commit 00d0bdf

Please sign in to comment.