--- /dev/null
+# Generated by Django 4.1.9 on 2024-05-21 14:46
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ("catalogue", "0051_book_plwiki"),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name="genre",
+ name="thema",
+ field=models.CharField(
+ blank=True, help_text="OdpowiadajÄ…cy kwalifikator Thema.", max_length=32
+ ),
+ ),
+ ]
class Genre(Category):
+ thema = models.CharField(
+ max_length=32, blank=True,
+ help_text='OdpowiadajÄ…cy kwalifikator Thema.'
+ )
plural = models.CharField(
'liczba mnoga', max_length=255, blank=True,
)