# Generated by Django 2.2.28 on 2025-07-05 08:10

import django.core.validators
from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('userauth', '0005_auto_20250703_1325'),
    ]

    operations = [
        migrations.AlterField(
            model_name='user',
            name='phone_number',
            field=models.CharField(blank=True, max_length=15, null=True, validators=[django.core.validators.RegexValidator(message='Phone number must contain only numeric characters and between 1 to 15 digits.', regex='^\\v1,15}$')]),
        ),
    ]
