Added isDeleted column in user action and version table.

This commit is contained in:
piyushkag
2024-11-22 17:32:48 +05:30
parent dd148c0ebf
commit 80ac5c58a3
3 changed files with 18 additions and 0 deletions

View File

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