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
This is because every app should have initial migration after Django 1.6. So, I should explicitly ran makemigrations with the app label:
$ ./manage.py makemigrations djangoseo
Migrations for 'djangoseo':
0001_initial.py:
- Create model EntryMetadataModel
- Create model EntryMetadataModelInstance
- Create model EntryMetadataPath
- Create model EntryMetadataView
- Alter unique_together for entrymetadataview (1 constraint(s))
- Alter unique_together for entrymetadatapath (1 constraint(s))
- Alter unique_together for entrymetadatamodelinstance (2 constraint(s))
- Alter unique_together for entrymetadatamodel (1 constraint(s))
The text was updated successfully, but these errors were encountered:
After installing app, if I ran:
This is because every app should have initial migration after Django 1.6. So, I should explicitly ran
makemigrations
with the app label:The text was updated successfully, but these errors were encountered: