Closed wfehr closed 1 year ago
@wfehr Thanks for pointing this out! I've opened a pr with the fix, I hope I can release a new version as soon as possible.
@wfehr We've just released version 1.4.3 . Check if everything is working as expected now :)
@wfehr We've just released version 1.4.3 . Check if everything is working as expected now :)
Works as expected - no new migration now.
Thanks!
Problem:
Currently, this project uses
BigAutoField
for theid
-fields of the models.I assume the migrations are created with the setting
DEFAULT_AUTO_FIELD
beingBigAutoField
.If a project changes this setting, it would result in a missing migration for this project (which I am currently facing :) ).
Solution:
The
BigAutoField
can be set viaAppConfig.default_auto_field
.From the Docs: