Add notes to collections in catalogue.
[redakcja.git] / src / catalogue / migrations / 0030_auto_20210706_1408.py
1 # Generated by Django 3.1.13 on 2021-07-06 14:08
2
3 from django.db import migrations, models
4
5
6 class Migration(migrations.Migration):
7
8     dependencies = [
9         ('catalogue', '0029_auto_20201102_1315'),
10     ]
11
12     operations = [
13         migrations.AddField(
14             model_name='collection',
15             name='notes',
16             field=models.TextField(blank=True, verbose_name='notes'),
17         ),
18         migrations.AddField(
19             model_name='collectioncategory',
20             name='notes',
21             field=models.TextField(blank=True, verbose_name='notes'),
22         ),
23     ]