Added isDeleted column in user action and version table.
This commit is contained in:
@@ -40,4 +40,7 @@ public class UserActionEntity extends BaseEntity {
|
||||
@Column(name = "RESPONSE")
|
||||
private String response;
|
||||
|
||||
@Column(name = "IS_DELETED")
|
||||
private String isDeleted;
|
||||
|
||||
}
|
||||
@@ -30,4 +30,7 @@ public class VersionHistoryEntity extends BaseEntity {
|
||||
|
||||
@Column(name = "USER_ID")
|
||||
private Long userId;
|
||||
|
||||
@Column(name = "IS_DELETED")
|
||||
private String isDeleted;
|
||||
}
|
||||
|
||||
@@ -1786,4 +1786,16 @@
|
||||
</addColumn>
|
||||
</changeSet>
|
||||
|
||||
<changeSet id="22-11-2024_2" author="Piyush">
|
||||
<addColumn tableName="user_action">
|
||||
<column name="is_deleted" type="BOOLEAN" defaultValueBoolean="false"/>
|
||||
</addColumn>
|
||||
</changeSet>
|
||||
|
||||
<changeSet id="22-11-2024_3" author="Piyush">
|
||||
<addColumn tableName="version_history">
|
||||
<column name="is_deleted" type="BOOLEAN" defaultValueBoolean="false"/>
|
||||
</addColumn>
|
||||
</changeSet>
|
||||
|
||||
</databaseChangeLog>
|
||||
|
||||
Reference in New Issue
Block a user