Skip to content

Commit

Permalink
Updated convert annotation to fix the build
Browse files Browse the repository at this point in the history
  • Loading branch information
Tholiswathi-ravipati committed Dec 12, 2023
1 parent 96a94e0 commit 11c55fc
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

@Entity
@Table(name = "SYNCRECORDDETAIL")
//@Convert(converter = JsonType.class)
@Convert(converter = JsonType.class, attributeName = "SYNCRECORDDETAIL")
@RequiredArgsConstructor
@AllArgsConstructor
@Getter
Expand All @@ -36,13 +36,13 @@ public class SyncRecordDetail extends Auditable<String> {
/**
*
*/
// @Convert(converter = JsonType.class)
@Convert(converter = JsonType.class, attributeName="payload")
@Column(columnDefinition = "jsonb")
private String payload;
/**
*
*/
// @Convert(converter = JsonType.class)
@Convert(converter = JsonType.class, attributeName="learner")
@Column(columnDefinition = "jsonb")
private String learner;
/**
Expand Down

0 comments on commit 11c55fc

Please sign in to comment.