You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
732 B
24 lines
732 B
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('accounts', '0002_auto_20150611_2306'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='profile',
|
|
name='temp_password',
|
|
field=models.IntegerField(blank=True, null=True, verbose_name='Одноразовый пароль', default=None),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='profile',
|
|
name='phone',
|
|
field=models.CharField(verbose_name='Номер мобильного телефона', max_length=15, unique=True, db_index=True),
|
|
),
|
|
]
|
|
|