From aa5e5fee9758d8d45f1819b4d482fff332a4c8c8 Mon Sep 17 00:00:00 2001 From: bashmak Date: Thu, 18 May 2017 12:04:13 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB=20?= =?UTF-8?q?=D0=B4=D0=B8=D0=BD=D0=B0=D0=BC=D0=B8=D1=87=D0=B5=D1=81=D0=BA?= =?UTF-8?q?=D0=B8=D0=B5=20=D0=BF=D0=BE=D0=BB=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- abonapp/migrations/0020_auto_20170517_1655.py | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 abonapp/migrations/0020_auto_20170517_1655.py diff --git a/abonapp/migrations/0020_auto_20170517_1655.py b/abonapp/migrations/0020_auto_20170517_1655.py new file mode 100644 index 0000000..edcf585 --- /dev/null +++ b/abonapp/migrations/0020_auto_20170517_1655.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9 on 2017-05-17 13:55 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('abonapp', '0019_abon_ip_address'), + ] + + operations = [ + migrations.AddField( + model_name='extrafieldsmodel', + name='title', + field=models.CharField(default='no title', max_length=16), + ), + migrations.AlterField( + model_name='extrafieldsmodel', + name='field_type', + field=models.CharField(choices=[('int', 'Цифровое поле'), ('str', 'Текстовое поле'), ('dbl', 'Дробное с плавающей точкой'), ('ipa', 'IP Адрес')], default='str', max_length=3), + ), + ]