Fixt the tags to be optional

This commit is contained in:
Daniel Quinn 2016-02-08 17:28:59 +00:00
parent e5e4ee0350
commit 212752f46e

View File

@ -18,4 +18,10 @@ class Migration(migrations.Migration):
field=models.CharField(choices=[('pdf', 'PDF'), ('png', 'PNG'), ('jpg', 'JPG'), ('gif', 'GIF'), ('tiff', 'TIFF')], default='pdf', editable=False, max_length=4),
preserve_default=False,
),
migrations.AlterField(
model_name='document',
name='tags',
field=models.ManyToManyField(blank=True, related_name='documents', to='documents.Tag'),
),
]