Search code examples
djangodjango-southdjango-socialauth

South migration for social auth


I am using south in my django project. I just added social_auth in settings.py, when i run this command: python manage.py schemamigration social_auth --auto

It says:Nothing seems to have changed.

Please let me know how can i create tables for social auth, as by this command the table is not getting created.


Solution

  • I don't think you need to generate migrations for social_auth, since this app should already have its migrations. Rather, you need to execute them, so after you added 'social_auth' in your settings you have to run only this command:

    python manage.py migrate social_auth