Allow multiple sources.
[redakcja.git] / src / catalogue / migrations / 0052_genre_thema.py
1 # Generated by Django 4.1.9 on 2024-05-21 14:46
2
3 from django.db import migrations, models
4
5
6 class Migration(migrations.Migration):
7
8     dependencies = [
9         ("catalogue", "0051_book_plwiki"),
10     ]
11
12     operations = [
13         migrations.AddField(
14             model_name="genre",
15             name="thema",
16             field=models.CharField(
17                 blank=True, help_text="OdpowiadajÄ…cy kwalifikator Thema.", max_length=32
18             ),
19         ),
20     ]