I made changes, created a new branch, committed, then migrated (after makemigrations).
But in that commit, it contained changes that I pulled remotely and it looked like my own.
I did not want this because I work on a team, so I made a new branch with only my changes.
The problem is, our database kept the migrations, but the code didn't.
So when I try to migrate, I get "migration already exists."
What do I do here? Is this a case where --fake
would be useful?
Any help is appreciated. Thanks in advance