Skip to content

Commit

Permalink
Format migration
Browse files Browse the repository at this point in the history
  • Loading branch information
didrikmunther committed Aug 9, 2023
1 parent 30e0922 commit aafbf5b
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions people/migrations/0013_add_armada_email.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,16 @@


class Migration(migrations.Migration):

dependencies = [
('people', '0012_profile_other_dietary_restrictions'),
("people", "0012_profile_other_dietary_restrictions"),
]

operations = [
migrations.AddField(
model_name='profile',
name='armada_email',
field=models.EmailField(blank=True, max_length=254, null=True, verbose_name='Armada Email'),
model_name="profile",
name="armada_email",
field=models.EmailField(
blank=True, max_length=254, null=True, verbose_name="Armada Email"
),
),
]

0 comments on commit aafbf5b

Please sign in to comment.