Skip to content

Commit 429ca3e

Browse files
committed
Add migration for person field.
1 parent 4b1a5a4 commit 429ca3e

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Django 4.1 on 2022-09-08 04:59
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
("community_db", "0001_initial"),
10+
]
11+
12+
operations = [
13+
migrations.AddField(
14+
model_name="person",
15+
name="email_address",
16+
field=models.EmailField(blank=True, max_length=900),
17+
),
18+
]

0 commit comments

Comments
 (0)