Deleting an item

0
Hi all, How can I delete an item from my app, but keep it in my database. So when it comes to warranties, you can still check if it was ever in the system.
asked
1 answers
1

Hi, I think you mean something like an archive function? 

Numerous ways to do this… for example:

- Give your object an ‘deleted’ status or boolean and make sure your normal users can not see objects with this status by setting an entity constraint

- Archive your data in another application or excel files

- Archive your object in a different ‘Archive’ Entity

answered