Deletion recovery and version control for model instances in Django

Sdílet
Vložit
  • čas přidán 5. 09. 2024

Komentáře • 20

  • @ZFCaio
    @ZFCaio Před měsícem

    The best Django channel

  • @francosbenitez
    @francosbenitez Před měsícem

    Wow! Didn't know about this package. Amazing!

  • @youbra4267
    @youbra4267 Před měsícem

    Thanks ❤

  • @advanceprogramming225
    @advanceprogramming225 Před měsícem

    Thank you boss❤

  • @BishnuThapaMagar
    @BishnuThapaMagar Před měsícem

    helpful ♥

  • @sebedebadong94
    @sebedebadong94 Před měsícem

    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!

  • @AndreasThoma-y8k
    @AndreasThoma-y8k Před 9 dny

    Can the revision work also if new fields are being added or being deleted?

    • @CloudWithDjango
      @CloudWithDjango  Před 8 dny

      Hi Andreas, thank you for your question. I'd suggest referring to the docs on this.

  • @AndreasThoma-y8k
    @AndreasThoma-y8k Před 9 dny

    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)

    • @CloudWithDjango
      @CloudWithDjango  Před 8 dny

      Hi Andreas, thank you for your question. I'd suggest referring to the docs on this.

  • @OperatorOperator
    @OperatorOperator Před měsícem

    What's the difference to django-auditlog?

    • @CloudWithDjango
      @CloudWithDjango  Před měsícem +1

      Here, we specifically keep track of model versions and also can recover deleted objects

  • @Omar_Bendary
    @Omar_Bendary Před měsícem

    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

    • @CloudWithDjango
      @CloudWithDjango  Před měsícem

      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.