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
Note, that I merged the order and polymorphic options together. Unfortunately django fails to recognize the ordering option and will create this migrations when running makemigrations;
This is not a big deal and an has an easy workaround just appending the options below. However my guess would be that there is some super() call missing inside the Polymorphic handling of CreateModel. So this might be a symptom of an issue that is deep down in the code.
The text was updated successfully, but these errors were encountered:
Lets take a model like this:
With an initial migration:
Note, that I merged the order and polymorphic options together. Unfortunately django fails to recognize the ordering
option
and will create this migrations when running makemigrations;This is not a big deal and an has an easy workaround just appending the options below. However my guess would be that there is some
super()
call missing inside the Polymorphic handling ofCreateModel
. So this might be a symptom of an issue that is deep down in the code.The text was updated successfully, but these errors were encountered: