Skip to content

Commit

Permalink
GH-265 - Use EVENT_PUBLICATION as table name for JPA to be consistent…
Browse files Browse the repository at this point in the history
… with JDBC.
  • Loading branch information
odrotbohm committed Aug 12, 2023
1 parent 1e1ebb5 commit 0bfdb81
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
import jakarta.persistence.Column;
import jakarta.persistence.Entity;
import jakarta.persistence.Id;
import jakarta.persistence.Table;

import java.time.Instant;
import java.util.UUID;
Expand All @@ -32,6 +33,7 @@
* @author Björn Kieling
*/
@Entity
@Table(name = "EVENT_PUBLICATION")
class JpaEventPublication {

final @Id @Column(length = 16) UUID id;
Expand Down

0 comments on commit 0bfdb81

Please sign in to comment.