Skip to content

Commit

Permalink
update the column name in migration script and entity class
Browse files Browse the repository at this point in the history
  • Loading branch information
kunyao-cofinity-x committed Nov 5, 2024
1 parent 448ed8f commit 2011916
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ class BusinessPartnerDb(
@JoinColumn(name = "address_confidence_id", unique = true)
var addressConfidence: ConfidenceCriteriaDb?,

@Column(name = "externalSequenceTimestamp")
@Column(name = "external_sequence_timestamp")
var externalSequenceTimestamp: Instant? = null,

) : BaseEntity() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
ALTER TABLE business_partners
ADD COLUMN externalSequenceTimestamp TIMESTAMP WITHOUT TIME ZONE NULL
ADD COLUMN external_sequence_timestamp TIMESTAMP WITHOUT TIME ZONE NULL

0 comments on commit 2011916

Please sign in to comment.