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
If unique_together is defined in Animal's Meta inner class, it should (but does not) propagate to Canine, since Canine (being of the same backend database table) is in fact subject to that constraint as well.
According to the "Meta inheritance" docs, that is currently how Meta inheritance works in the case of abstract classes.
The text was updated successfully, but these errors were encountered:
If
unique_together
is defined inAnimal
'sMeta
inner class, it should (but does not) propagate toCanine
, sinceCanine
(being of the same backend database table) is in fact subject to that constraint as well.According to the "Meta inheritance" docs, that is currently how Meta inheritance works in the case of abstract classes.
The text was updated successfully, but these errors were encountered: