plwiki for books
[redakcja.git] / src / catalogue / migrations / 0049_thema_public_description.py
1 # Generated by Django 4.1.9 on 2023-07-25 12:52
2
3 from django.db import migrations, models
4
5
6 class Migration(migrations.Migration):
7
8     dependencies = [
9         (
10             "catalogue",
11             "0048_audience_alter_thema_options_thema_plural_thema_slug_and_more",
12         ),
13     ]
14
15     operations = [
16         migrations.AddField(
17             model_name="thema",
18             name="public_description",
19             field=models.TextField(blank=True),
20         ),
21     ]