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
Login to admin console and try to add a new Journey.
Reason for failure - Server returns IntegrityError - NOT NULL constraint failed: main_journey.description
Explanation -
Take a look at 0002_journey.py file. The file represents a model which contains description field, while the actual model has no description field.
To fix the issue - Run python manage.py makemigrations and commit the new migration file.