If you were using Django before version 1.7 introduced database migrations into the core functionality, you have more than likely used third-party South migrations before. In this recipe, you will learn how to switch your project from South migrations to Django migrations.
Switching from South migrations to Django migrations
Getting ready
Make sure that all apps, along with their South migrations, are up to date.
How to do it...
Execute the following steps:
- Migrate all of your apps to the latest South migrations, as follows:
(myproject_env)$ python3 manage.py migrate...