I have added the "nearbyzips" field to my model, and now I can not get past these errors. These are the steps that I have taken.
manage.py sqlclear accounts manage.py syncdb
I do not get errors from these two commands, but as soon as run manage.py check_permissions, I get:
ProgrammingError: column accounts.my_profile.nearbyzips" does not exist
I also set the South (although I don't want to use it) out of desperation and followed the tutorial to convert an existing project to use the South. This did not work, so I remove the south from the installed applications and delete the migration folder in my accounts folder.
My understanding of "manage.py sqlclear accounts" is that it will delete the actual database table and syncdb will then restore it. It seems that this does not do what should be done differently, it will eliminate the error that I would suggest. All I did was add a model field, it should not be so difficult.
Does anyone have any other advice? I read countless entries on this subject, and the only real solution I read is to use sqlclear, which I made, so I worry that I hit a dead end to fix this problem.
source share