From 503beb68b905d8dd52523456c69e27eb434eaab1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Barrag=C3=A1n=20Merino?= Date: Wed, 1 Feb 2017 11:54:17 +0100 Subject: [PATCH] Add missed migration --- .../migrations/0008_auto_20170201_1053.py | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 taiga/projects/attachments/migrations/0008_auto_20170201_1053.py diff --git a/taiga/projects/attachments/migrations/0008_auto_20170201_1053.py b/taiga/projects/attachments/migrations/0008_auto_20170201_1053.py new file mode 100644 index 00000000..72b91c3b --- /dev/null +++ b/taiga/projects/attachments/migrations/0008_auto_20170201_1053.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10.4 on 2017-02-01 10:53 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('attachments', '0007_attachment_from_comment'), + ] + + operations = [ + migrations.AlterField( + model_name='attachment', + name='from_comment', + field=models.BooleanField(default=False, verbose_name='from comment'), + ), + ]