Collections pages.
[wolnelektury.git] / src / catalogue / migrations / 0040_alter_collection_description.py
1 # Generated by Django 4.0.8 on 2022-10-28 13:03
2
3 from django.db import migrations, models
4
5
6 class Migration(migrations.Migration):
7
8     dependencies = [
9         ('catalogue', '0039_collection_authors'),
10     ]
11
12     operations = [
13         migrations.AlterField(
14             model_name='collection',
15             name='description',
16             field=models.TextField(blank=True, default='', verbose_name='description'),
17             preserve_default=False,
18         ),
19     ]