From 22adb5693123782eb604fa6e478105d4bc7fecb4 Mon Sep 17 00:00:00 2001 From: Dmitry Date: Sun, 15 Jan 2017 23:31:55 +0000 Subject: [PATCH] =?UTF-8?q?=D0=BE=D0=BF=D0=B8=D1=81=D0=B0=D0=BD=D0=B8?= =?UTF-8?q?=D0=B5=20=D0=B7=D0=B0=D0=B4=D0=B0=D1=87=D0=B8=20=D1=82=D0=B5?= =?UTF-8?q?=D0=BF=D0=B5=D1=80=D1=8C=20=D0=BD=D0=B5=20=D0=BE=D0=B1=D1=8F?= =?UTF-8?q?=D0=B7=D0=B0=D1=82=D0=B5=D0=BB=D1=8C=D0=BD=D0=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- taskapp/migrations/0011_auto_20170116_0126.py | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 taskapp/migrations/0011_auto_20170116_0126.py diff --git a/taskapp/migrations/0011_auto_20170116_0126.py b/taskapp/migrations/0011_auto_20170116_0126.py new file mode 100644 index 0000000..5046522 --- /dev/null +++ b/taskapp/migrations/0011_auto_20170116_0126.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9 on 2017-01-15 22:26 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('taskapp', '0010_auto'), + ] + + operations = [ + migrations.AlterField( + model_name='task', + name='descr', + field=models.CharField(blank=True, max_length=128, null=True), + ), + ]