Some housekeeping
[redakcja.git] / src / catalogue / migrations / 0003_chunk__new_publishable.py
1 # This file is part of FNP-Redakcja, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
3 #
4 from django.db import migrations, models
5
6
7 class Migration(migrations.Migration):
8
9     dependencies = [
10         ('catalogue', '0002_auto_20190307_1543'),
11     ]
12
13     operations = [
14         migrations.AddField(
15             model_name='chunk',
16             name='_new_publishable',
17             field=models.NullBooleanField(editable=False),
18         ),
19     ]