From 0600078c2778d37efdb47889709812788a477823 Mon Sep 17 00:00:00 2001 From: eric Date: Fri, 29 Jul 2016 18:49:08 -0400 Subject: [PATCH] empty the repair migration --- .../migrations/0002_auto_20160727_2214.py | 35 ++++++++++--------- 1 file changed, 18 insertions(+), 17 deletions(-) diff --git a/libraryauth/migrations/0002_auto_20160727_2214.py b/libraryauth/migrations/0002_auto_20160727_2214.py index 0a65ccd1..191ff4c7 100644 --- a/libraryauth/migrations/0002_auto_20160727_2214.py +++ b/libraryauth/migrations/0002_auto_20160727_2214.py @@ -4,9 +4,10 @@ from __future__ import unicode_literals from django.conf import settings from django.db import migrations, models -import social +#import social -# this migration repairs the state of our database so that social auth migrations can be applied +# this migration repaired the state of our database so that social auth migrations can be applied +# after application, it should never do anything more class Migration(migrations.Migration): @@ -15,19 +16,19 @@ class Migration(migrations.Migration): ] operations = [] if settings.TESTING else [ - migrations.CreateModel( - name='Code', - fields=[ - ('id', models.AutoField( - verbose_name='ID', serialize=False, auto_created=True, - primary_key=True)), - ('email', models.EmailField(max_length=75)), - ('code', models.CharField(max_length=32, db_index=True)), - ('verified', models.BooleanField(default=False)), - ], - options={ - 'db_table': 'social_auth_code', - }, - bases=(models.Model, social.storage.django_orm.DjangoCodeMixin), - ), +# migrations.CreateModel( +# name='Code', +# fields=[ +# ('id', models.AutoField( +# verbose_name='ID', serialize=False, auto_created=True, +# primary_key=True)), +# ('email', models.EmailField(max_length=75)), +# ('code', models.CharField(max_length=32, db_index=True)), +# ('verified', models.BooleanField(default=False)), +# ], +# options={ +# 'db_table': 'social_auth_code', +# }, +# bases=(models.Model, social.storage.django_orm.DjangoCodeMixin), +# ), ]