Even after running migrations Django Programming error column does not exist
At first on my project everthing is works fine but after I added field to model everything is broken.I am working on ubuntu with postgresql.(Django project) .I deleted migrations folder and django_migrations folder but nothing is change.Everytime I get this error.Can anyone please help me??
After a change in the model you need to create new migrations with manage.py makemigrations and apply them using manage.py migrate.
Usually old migrations are not deleted and committed to VCS. If you deleted the old migrations start with a fresh database.
More information regarding see Migrations in the Django-Docs. Also have a look at the generated migrations when you change your models.
