23 lines
539 B
Python
23 lines
539 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11 on 2017-10-11 18:12
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("webapp", "0023_remove_kaehmyform_phone_number"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="kaehmyform",
|
|
name="phone_number",
|
|
field=models.CharField(
|
|
default="", max_length=10, verbose_name="Phone number"
|
|
),
|
|
),
|
|
]
|