parent
767885b9bc
commit
d67ee6aa8e
3 changed files with 39 additions and 1 deletions
@ -0,0 +1,19 @@ |
|||||||
|
# -*- coding: utf-8 -*- |
||||||
|
from __future__ import unicode_literals |
||||||
|
|
||||||
|
from django.db import models, migrations |
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration): |
||||||
|
|
||||||
|
dependencies = [ |
||||||
|
('accounts', '0003_auto_20150616_2302'), |
||||||
|
] |
||||||
|
|
||||||
|
operations = [ |
||||||
|
migrations.AlterField( |
||||||
|
model_name='profile', |
||||||
|
name='email', |
||||||
|
field=models.EmailField(verbose_name='Email', default=None, max_length=254), |
||||||
|
), |
||||||
|
] |
||||||
File diff suppressed because one or more lines are too long
Loading…
Reference in new issue