When changing DEFAULT_AUTO_FIELD setting there are pending migrations
jgadelange opened this issue · 0 comments
jgadelange commented
Since Django 3.2 there is a DEFAULT_AUTO_FIELD
setting which is set to BigAutoField
by default. If you keep that setting Django wants to create migrations for django-sitetree
since it uses an AutoField
.
The Django 3.2 release notes suggest setting AppConfig.default_auto_field
to AutoField
to prevent problems with this.