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'), + ), + ]