Collections pages.
[wolnelektury.git] / src / catalogue / migrations / 0041_alter_collection_authors.py
1 # Generated by Django 4.0.8 on 2022-10-28 13:06
2
3 from django.db import migrations, models
4
5
6 class Migration(migrations.Migration):
7
8     dependencies = [
9         ('catalogue', '0040_alter_collection_description'),
10     ]
11
12     operations = [
13         migrations.AlterField(
14             model_name='collection',
15             name='authors',
16             field=models.ManyToManyField(blank=True, limit_choices_to={'category': 'author'}, to='catalogue.tag'),
17         ),
18     ]