Perform to move main developing to git
This commit is contained in:
19
account/migrations/0005_alter_siteuser_phone.py
Normal file
19
account/migrations/0005_alter_siteuser_phone.py
Normal file
@@ -0,0 +1,19 @@
|
||||
# Generated by Django 4.1.1 on 2022-09-18 19:44
|
||||
|
||||
import django.core.validators
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('account', '0004_alter_siteuser_phone'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='siteuser',
|
||||
name='phone',
|
||||
field=models.CharField(max_length=16, unique=True, validators=[django.core.validators.RegexValidator(regex='^\\+?[0-9]*$'), django.core.validators.MaxLengthValidator(limit_value=16), django.core.validators.MinLengthValidator(limit_value=6)], verbose_name='Телефон'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user