blob: 60ddcfd57f3f32213365ed99bc6515ff8f10fa74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Generated by Django 2.1.5 on 2019-02-09 14:16
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('lttr', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='subscriber',
name='email_field',
field=models.EmailField(blank=True, db_column='email', db_index=True, max_length=254, null=True),
),
]
|