From 2b9053631ff5e03d53a8b19e5cb4a8bd471990e3 Mon Sep 17 00:00:00 2001 From: Dmitry Date: Wed, 3 May 2017 02:10:08 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=B5=D1=80=D0=B5=D0=B8=D0=BC=D0=B5?= =?UTF-8?q?=D0=BD=D0=BE=D0=B2=D0=B0=D0=BB=20=D1=82=D0=B8=D0=BF=20=D1=83?= =?UTF-8?q?=D1=81=D0=BB=D1=83=D0=B3=D0=B8=20=D0=B2=20IS?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../migrations/0005_auto_20170502_2229.py | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 tariff_app/migrations/0005_auto_20170502_2229.py diff --git a/tariff_app/migrations/0005_auto_20170502_2229.py b/tariff_app/migrations/0005_auto_20170502_2229.py new file mode 100644 index 0000000..7b0ba08 --- /dev/null +++ b/tariff_app/migrations/0005_auto_20170502_2229.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9 on 2017-05-02 19:29 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('tariff_app', '0004_auto_20170416_0350'), + ] + + operations = [ + migrations.AlterField( + model_name='tariff', + name='calc_type', + field=models.CharField(choices=[('Df', 'Базовый расчётный функционал'), ('Dp', 'IS'), ('Cp', 'Для внутреннего пользования')], default='Df', max_length=2), + ), + ]