Migrations with South (Django 1.6 + MySQL) on Existing project

125 Views Asked by At

I need a tip on following situation

I've downloaded project with apps models, fixtures, migrations etc to local machine. Then created virtual env and made pip install -r requirements. Everything is ok.

Now I want to create tables in mysql using existing South migrations, but there is no south_migrationhistory table in database. Actually database only has django tables from ./manage.py syncdb

Should I use existing migration files or I have to delete them and create from scratch?

0

There are 0 best solutions below