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.
21 lines
522 B
21 lines
522 B
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.6 on 2017-12-17 18:08
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations
|
|
import phonenumber_field.modelfields
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('access', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='account',
|
|
name='phone',
|
|
field=phonenumber_field.modelfields.PhoneNumberField(blank=True, max_length=128, null=True),
|
|
),
|
|
]
|
|
|