-
Notifications
You must be signed in to change notification settings - Fork 356
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not all migrations seems to be included #388
Comments
Thats because you re running Django 5 - this app has not been updated to support that version yet. |
I don't think that Django 5 is the issue. I got similar migrations running Django 4.2 :
The resulting 0008_alter_account_id_alter_accountdeletion_id_and_more.py migration file was similar to frian's file, but only slightly different:
Are there any migrations missing from this project's source code? |
The models in this app rely on Django auto assigning a primary key. the original models were generated when the default was "AutoField". Your migrations are using "BigAutoField" and hence the perceived change. |
When running makemigrations Django is finding some new ones
django-user-accounts==3.3.2
The migration here created looks like
The text was updated successfully, but these errors were encountered: