I'm using a Django app that has recently been updated. I put this new package info in my requirements.txt file and it installs correctly. But, I can't get my database to register it (I'm using Django 1.5.8). The new version of the app includes a new field and that column is not being added to my database. I'm using South and have done a schemamigration. I've also tried migrating and using the syncdb command but I keep getting this error:
DatabaseError at /admin/publications/publication/
column publications_publication.location does not exist
LINE 1: ...isher", "publications_publication"."institution", "publicati...
^
Request Method: GET
Request URL: http://localhost:8000/admin/publications/publication/
Django Version: 1.5.11
Exception Type: DatabaseError
Exception Value:
column publications_publication.location does not exist
LINE 1: ...isher", "publications_publication"."institution", "publicati...
Any idea on how to fix this? How can I add this new column?