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.
20 lines
592 B
20 lines
592 B
# Generated by Django 3.2.7 on 2025-01-14 16:36
|
|
|
|
from django.db import migrations
|
|
import phonenumber_field.modelfields
|
|
import utils.validators
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('transaction', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='participantinfo',
|
|
name='phone_number',
|
|
field=phonenumber_field.modelfields.PhoneNumberField(blank=True, max_length=128, null=True, region=None, validators=[utils.validators.validate_possible_number], verbose_name='phone'),
|
|
),
|
|
]
|