20 lines
505 B
Python
Executable File
20 lines
505 B
Python
Executable File
# Generated by Django 3.1.3 on 2021-01-26 19:13
|
|
|
|
from django.db import migrations
|
|
import phonenumber_field.modelfields
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('users', '0004_auto_20210114_2051'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='base_user',
|
|
name='phone',
|
|
field=phonenumber_field.modelfields.PhoneNumberField(blank=True, default='', max_length=128, null=True, region=None, unique=True),
|
|
),
|
|
]
|