[Answer]-Ugly Django error: column hello_match.URL does not exist

0👍

It seems you changed the model but did not upgdated the database. Once aging you have to sync db with model.

python manage.py makemigration <your app>
python manage.py migrate

1👍

Hardcore method: remove your migration-files from the hello_match app and repeat syncdb

Leave a comment