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

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