Added a migration matching the new validator on Email.address.
- Legacy-Id: 13744
This commit is contained in:
parent
108c00a0a3
commit
b8e11e7f71
21
ietf/person/migrations/0020_auto_20170701_0325.py
Normal file
21
ietf/person/migrations/0020_auto_20170701_0325.py
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# Generated by Django 1.10.7 on 2017-07-01 03:25
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
import django.core.validators
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('person', '0019_add_discovered_people'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='email',
|
||||||
|
name='address',
|
||||||
|
field=models.CharField(max_length=64, primary_key=True, serialize=False, validators=[django.core.validators.EmailValidator()]),
|
||||||
|
),
|
||||||
|
]
|
Loading…
Reference in a new issue