Skip to content

Commit

Permalink
Fix migration that was causing an error when running unit tests -- pe…
Browse files Browse the repository at this point in the history
…rson email_address was not found (odd?)
  • Loading branch information
martinfilliau committed Jan 14, 2015
1 parent 72d43f1 commit 7f9a61e
Showing 1 changed file with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ class Migration(migrations.Migration):
('name', models.CharField(max_length=250)),
('slug', models.SlugField()),
('bio', models.TextField()),
('email_address', models.EmailField(max_length=254, null=True, blank=True))
],
options={
},
Expand Down Expand Up @@ -257,12 +258,6 @@ class Migration(migrations.Migration):
field=models.TextField(verbose_name=b'Affiliation'),
preserve_default=True,
),
migrations.AlterField(
model_name='person',
name='email_address',
field=models.EmailField(max_length=254, null=True, blank=True),
preserve_default=True,
),
migrations.AddField(
model_name='event',
name='booking_email',
Expand Down

0 comments on commit 7f9a61e

Please sign in to comment.