25 lines
628 B
Python
25 lines
628 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11 on 2017-10-11 16:59
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations
|
|
import phonenumber_field.modelfields
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("webapp", "0019_kaehmymessage_timestamp"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="kaehmyform",
|
|
name="phone_number",
|
|
field=phonenumber_field.modelfields.PhoneNumberField(
|
|
default="", max_length=128, verbose_name="Phone number"
|
|
),
|
|
preserve_default=False,
|
|
),
|
|
]
|