Changing models in django results in broken database?

Posted by Rhubarb on Stack Overflow See other posts from Stack Overflow or by Rhubarb
Published on 2010-04-03T13:20:17Z Indexed on 2010/04/03 13:23 UTC
Read the original article Hit count: 445

I have added and removed fields in my models.py file and then run manage.py syncdb. Usually I have to quit out of the shell and restart it before syncdb does anything. And then even after that, I am getting errors when trying to access the admin pages, it seems that certain new fields that I've added still don't show up in the model:

Caught an exception while rendering: no such column: mySite_book.Title

© Stack Overflow or respective owner

Related posts about django

Related posts about django-models