Can the revision work also if new fields are being added or being deleted?
@CloudWithDjango3 ай бұрын
Hi Andreas, thank you for your question. I'd suggest referring to the docs on this.
@sebedebadong945 ай бұрын
Very helpful! Can you do also with REST API? And how do we like protect POST request from REST API on Production Enviroment setup. Thank you!
@CloudWithDjango5 ай бұрын
Thank you!! I appreciate the suggestion!
@AndreasThoma-y8k3 ай бұрын
Can other models have a Person foreign key from different revisions? (ex. A model has a Person foreign key of version 1.0.0 but another model has a Person foreign key of version 2.0.0)
@CloudWithDjango3 ай бұрын
Hi Andreas, thank you for your question. I'd suggest referring to the docs on this.
@OperatorOperator5 ай бұрын
What's the difference to django-auditlog?
@CloudWithDjango5 ай бұрын
Here, we specifically keep track of model versions and also can recover deleted objects
@OmarBendaryJr5 ай бұрын
I think this package is going to be very heavy on the database cause it saves every version so we have alot of versions of database
@CloudWithDjango5 ай бұрын
We won't have lots of versions of the database, but yes lots of versions of the model instances. So, it would be best in production to have a lot of memory allocated if you want to keep track of your object instances.