I have created a model and executed syncdb which had created the tables as my model was designed.
Afterwards I modified the model and executed makemigrations
which created the migrations ignoring the tables that syncdb had already created.
So I ended up with an error "relation already exists".
Why did makemigrations created everything from scratch? How do I fix this situation ?