welco/welco/sources/phone/migrations/0003_auto_20151103_1202.py

27 lines
675 B
Python

# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('phone', '0002_auto_20151028_1635'),
]
operations = [
migrations.AddField(
model_name='phonecall',
name='contact_id',
field=models.CharField(max_length=50, null=True),
preserve_default=True,
),
migrations.AddField(
model_name='phonecall',
name='status',
field=models.CharField(max_length=50, verbose_name='Status', blank=True),
preserve_default=True,
),
]