Updated column name.

This commit is contained in:
piyushkag
2024-11-22 17:41:36 +05:30
parent 80ac5c58a3
commit dd6fb536c7
2 changed files with 4 additions and 4 deletions

View File

@@ -40,7 +40,7 @@ public class UserActionEntity extends BaseEntity {
@Column(name = "RESPONSE") @Column(name = "RESPONSE")
private String response; private String response;
@Column(name = "IS_DELETED") @Column(name = "IS_DELETED", nullable = false)
private String isDeleted; private Boolean isDeleted = false;
} }

View File

@@ -31,6 +31,6 @@ public class VersionHistoryEntity extends BaseEntity {
@Column(name = "USER_ID") @Column(name = "USER_ID")
private Long userId; private Long userId;
@Column(name = "IS_DELETED") @Column(name = "IS_DELETED", nullable = false)
private String isDeleted; private Boolean isDeleted = false;
} }