django.db.utils.OperationalError: my_table has no column id error?
You have to run python manage.py syncdb
(or python manage.py migrate
if you use south
- which you should) in order for changes to be applied to the database.
You have to run python manage.py syncdb
(or python manage.py migrate
if you use south
- which you should) in order for changes to be applied to the database.