As the title says, I can\'t seem to get migrations working.
The app was originally under 1.6, so I understand that migrations won\'t be there initially, and indeed i
People like me who don't like migrations can use steps below.
python manage.py makemigrations app_label for the initial migration.python manage.py migrate for creating tables before you make changes.If you confused any of these steps, read the migration files. Change them to correct your schema or remove unwanted files but don't forget to change next migration file's dependencies part ;)
I hope this will help someone in future.