tag forms (unused for now)
[redakcja.git] / apps / catalogue / migrations / 0012_tag_dc_value.py
1 # -*- coding: utf-8 -*-
2 from __future__ import unicode_literals
3
4 from django.db import migrations, models
5
6
7 class Migration(migrations.Migration):
8
9     dependencies = [
10         ('catalogue', '0011_document_published'),
11     ]
12
13     operations = [
14         migrations.AddField(
15             model_name='tag',
16             name='dc_value',
17             field=models.CharField(default='', max_length=32),
18             preserve_default=False,
19         ),
20     ]