I keep getting the following error django.db.utils.ProgrammingError: column “name” of relation “blog_post” already exists in my django app
When I try to Migrate I get the following error django.db.utils.ProgrammingError: column "name" of relation "blog_post" already exists now I have assumed that the message means that I am trying to make a column named "name" and one with the same name already exists. So I looked at my model to make sure one didn't exist and it doesn't. I don't understand what the issue is. Here is my model. Oh and I ran migrations first before I ran migrate. so that's not the issue class Post(models.Model): STATUS_CHOICES = ( ('draft', 'Draft'), ('published', 'Published'), ) title = models.CharField(max_length