I have trouble with django model migrations.
I have some models in my app, and I already have some data inside.
When I added some models in my application, and I run mak
check your db tables to make sure you are not trying to recreate the table during migrations. that's what it was for me. If you have data in the table that you don't want to delete, remove all migrations from the app_name/migrations folder and then run ./manage.py migrate app_name --fake default
then try makemigrations and migrate for the rest