I'm trying to Create initial migrations for existing schema in Django 1.7 and I'm following this solution from the above question.
But When I run
python manage.py migrate --fake-initial
I get this error:
Usage: manage.py migrate [options] [app_label] [migration_name]
Updates database schema. Manages both apps with migrations and those without.
manage.py: error: no such option: --fake-initial
Considering that the question and answer are for Django 1.8, is it different how to do this in 1.7 version?