20 lines
500 B
Python
20 lines
500 B
Python
# Generated by Django 2.2.7 on 2020-01-20 09:39
|
|
|
|
from django.db import migrations
|
|
import phonenumber_field.modelfields
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('account', '0032_auto_20200114_1311'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='user',
|
|
name='phone',
|
|
field=phonenumber_field.modelfields.PhoneNumberField(blank=True, default=None, max_length=128, null=True, verbose_name='Phone'),
|
|
),
|
|
]
|