Open
Description
Steps to reproduce
- Pull latest pre-dev branch
- Run
python manage.py migrate
- 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.