Skip to content

Commit

Permalink
Merge pull request #993 from clintonb/migration-fix
Browse files Browse the repository at this point in the history
Fixed Django Migrations
  • Loading branch information
omab authored Aug 13, 2016
2 parents e3830ad + 361f422 commit 36f67cb
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions social/apps/django_app/default/migrations/0001_initial.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@


class Migration(migrations.Migration):
replaces = [('default', '0001_initial')]

dependencies = [
migrations.swappable_dependency(USER_MODEL),
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@


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

dependencies = [
('social_auth', '0001_initial'),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@


class Migration(migrations.Migration):
replaces = [('default', '0003_alter_email_max_length')]

dependencies = [
('social_auth', '0002_add_related_name'),
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@


class Migration(migrations.Migration):
replaces = [('default', '0004_auto_20160423_0400')]

dependencies = [
('social_auth', '0003_alter_email_max_length'),
Expand Down

0 comments on commit 36f67cb

Please sign in to comment.