tag forms (unused for now)
[redakcja.git] / apps / catalogue / migrations / 0005_auto_20150505_1229.py
1 # -*- coding: utf-8 -*-
2 from __future__ import unicode_literals
3
4 from django.db import models, migrations
5
6
7 class Migration(migrations.Migration):
8
9     dependencies = [
10         ('catalogue', '0004_publishrecord'),
11     ]
12
13     operations = [
14         migrations.AddField(
15             model_name='document',
16             name='deleted',
17             field=models.BooleanField(default=False),
18         ),
19         migrations.AlterField(
20             model_name='document',
21             name='stage',
22             field=models.CharField(default=b'Draft', max_length=128, verbose_name='stage', blank=True),
23         ),
24     ]