Skip to content

Commit

Permalink
Merge pull request #916 from cclay/social_auth_app_label_and_migrations
Browse files Browse the repository at this point in the history
Add Django AppConfig Label of "social_auth" for migrations
  • Loading branch information
omab committed Jul 17, 2016
2 parents cea986d + 344f61e commit c8a580f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions social/apps/django_app/default/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

class PythonSocialAuthConfig(AppConfig):
name = 'social.apps.django_app.default'
label = 'social_auth'
verbose_name = 'Python Social Auth'

def ready(self):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
class Migration(migrations.Migration):

dependencies = [
('default', '0001_initial'),
('social_auth', '0001_initial'),
]

operations = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

class Migration(migrations.Migration):
dependencies = [
('default', '0002_add_related_name'),
('social_auth', '0002_add_related_name'),
]

operations = [
Expand Down

0 comments on commit c8a580f

Please sign in to comment.