21 lines
491 B
Python
21 lines
491 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.11.22 on 2019-08-02 19:44
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('users', '0016_auto_20190802_2143'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='user',
|
||
|
name='email',
|
||
|
field=models.EmailField(blank=True, max_length=254, verbose_name='email address'),
|
||
|
),
|
||
|
]
|