Undelete Entities of a table\data structure
Comments
-
You can undelete the soft deleted entities.
Unfortunately, no step is available to undelete the entities currently. However you can do this using query by updating a few fields of the entity.
To undelete entity update the following fields:
- deleted: False
- deleted_by: NULL
- deleted_on: NULL
You can run a selected query to fetch all entities and compare the difference between a deleted entity and a normal entity.
