Skip to content

Commit

Permalink
Fix entity base class
Browse files Browse the repository at this point in the history
  • Loading branch information
carlesarnal committed Jan 18, 2024
1 parent bf3000b commit 09afd6b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package io.apicurio.registry.probe.persistence;

import io.quarkus.hibernate.orm.panache.PanacheEntity;
import io.quarkus.hibernate.orm.panache.PanacheEntityBase;
import jakarta.persistence.Cacheable;
import jakarta.persistence.Column;
import jakarta.persistence.Entity;
Expand All @@ -10,7 +10,7 @@

@Entity(name = "customers")
@Cacheable
public class CustomerEntity extends PanacheEntity {
public class CustomerEntity extends PanacheEntityBase {

@Id
@GeneratedValue(generator = "customer_id_seq_generator")
Expand Down

0 comments on commit 09afd6b

Please sign in to comment.