From b7b670613b8477202ddc9f4f25738f31391261ed Mon Sep 17 00:00:00 2001 From: Dmitry Date: Mon, 27 Feb 2017 00:39:52 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB=20?= =?UTF-8?q?=D0=BF=D0=B5=D1=80=D0=B5=D0=B2=D0=BE=D0=B4=20=D0=BF=D0=BE=D0=BB?= =?UTF-8?q?=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../migrations/0005_auto_20170222_2224.py | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 accounts_app/migrations/0005_auto_20170222_2224.py diff --git a/accounts_app/migrations/0005_auto_20170222_2224.py b/accounts_app/migrations/0005_auto_20170222_2224.py new file mode 100644 index 0000000..cfb134b --- /dev/null +++ b/accounts_app/migrations/0005_auto_20170222_2224.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9 on 2017-02-22 19:24 +from __future__ import unicode_literals + +import django.core.validators +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('accounts_app', '0004_auto_20170128_1316'), + ] + + operations = [ + migrations.AlterField( + model_name='userprofile', + name='telephone', + field=models.CharField(max_length=16, validators=[django.core.validators.RegexValidator('^\\+[7,8,9,3]\\d{10,11}$')], verbose_name='Номер телефона'), + ), + ]