Fix.
[redakcja.git] / src / documents / migrations / 0020_alter_book_dc_slug.py
1 # Generated by Django 4.1.9 on 2024-10-15 14:39
2
3 from django.db import migrations, models
4
5
6 class Migration(migrations.Migration):
7
8     dependencies = [
9         ("documents", "0019_fk_uses_id"),
10     ]
11
12     operations = [
13         migrations.AlterField(
14             model_name="book",
15             name="dc_slug",
16             field=models.CharField(
17                 blank=True, editable=False, max_length=2048, null=True
18             ),
19         ),
20     ]