You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
listing and such will fail due to the child models not having the removed field.
Having the child models permanent will instead cause issues when deleting as only the child models are being soft deleted, the parent object will still be hard deleted leading to a constraint violation. Attempting to inherit permanent in both parent and child models will also result in a clash of the removed field.
The text was updated successfully, but these errors were encountered:
Currently permanent does not work with inherited models.
If the parent model is permanent e.g.
listing and such will fail due to the child models not having the
removed
field.Having the child models permanent will instead cause issues when deleting as only the child models are being soft deleted, the parent object will still be hard deleted leading to a constraint violation. Attempting to inherit permanent in both parent and child models will also result in a clash of the
removed
field.The text was updated successfully, but these errors were encountered: