I am using hibernate envers in my springboot project. So the audit table will have all historic data except data for deleted revision because in properties file we didn't set spring.jpa.properties.org.hibernate.envers.store_data_at_delete=true
Now we want to manually update all the deleted revisions data. Is it possible in hibernate envers to update the deleted revision row with some fields in audit table.
Example: I have employee table with id(int), name(string), age(int), address(string). And i have audit table created with id, name, age, address, revtype, revid. Here in my audit table new row will be added for each ADD, MOD, DEL. But for revision DEL, only id, revtype and revid is inserted with all other fields null. Is it possible to update this audit table with other fields for deleted revisions.