From aabc0ad84b9a7a4f4ef1e12fcce5ffff28834824 Mon Sep 17 00:00:00 2001 From: bashmak Date: Thu, 16 Feb 2017 17:47:09 +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=BF=D0=BE=D0=BB=D0=B5=20=D0=B4=D0=B0=D1=82=D1=8B=20=D0=B7?= =?UTF-8?q?=D0=B0=D0=B2=D0=B5=D1=80=D1=88=D0=B5=D0=BD=D0=B8=D1=8F=20=D1=83?= =?UTF-8?q?=D1=81=D0=BB=D1=83=D0=B3=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../migrations/0009_abontariff_death_line.py | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 abonapp/migrations/0009_abontariff_death_line.py diff --git a/abonapp/migrations/0009_abontariff_death_line.py b/abonapp/migrations/0009_abontariff_death_line.py new file mode 100644 index 0000000..1152d33 --- /dev/null +++ b/abonapp/migrations/0009_abontariff_death_line.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9 on 2017-02-16 12:22 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('abonapp', '0008_auto_20170209_0002'), + ] + + operations = [ + migrations.AddField( + model_name='abontariff', + name='deadline', + field=models.DateTimeField(blank=True, default=None, null=True), + ), + ]