Skip to content

Commit

Permalink
Add migration for person field.
Browse files Browse the repository at this point in the history
  • Loading branch information
wsot committed Sep 8, 2022
1 parent 4b1a5a4 commit 429ca3e
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/community_db/migrations/0002_person_email_address.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.1 on 2022-09-08 04:59

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("community_db", "0001_initial"),
]

operations = [
migrations.AddField(
model_name="person",
name="email_address",
field=models.EmailField(blank=True, max_length=900),
),
]

0 comments on commit 429ca3e

Please sign in to comment.