Skip to content

Commit

Permalink
[HOTFIX]ReceiptOption 엔티티가 BaseTimeEntity를 상속받도록 수정 (#320)
Browse files Browse the repository at this point in the history
Signed-off-by: kmw2378 <[email protected]>
  • Loading branch information
kmw2378 committed Jul 8, 2024
1 parent 446dfcf commit c432d78
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
@Getter
@NoArgsConstructor(access = AccessLevel.PROTECTED)
@Table(
indexes = {@Index(name = "idx_receipt_option_receipt_id",columnList = "receipt_id",unique = true)}
indexes = {@Index(name = "idx_receipt_option_receipt_id", columnList = "receipt_id", unique = false)}
)
public class ReceiptOption {
public class ReceiptOption extends BaseTimeEntity {

@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
Expand Down

0 comments on commit c432d78

Please sign in to comment.