Update to new librarian api for html, txt.
[wolnelektury.git] / src / catalogue / migrations / 0049_snippet_anchor.py
1 # Generated by Django 4.0.8 on 2024-09-17 14:14
2
3 from django.db import migrations, models
4
5
6 class Migration(migrations.Migration):
7
8     dependencies = [
9         ('catalogue', '0048_remove_collection_kind_remove_tag_for_books_and_more'),
10     ]
11
12     operations = [
13         migrations.AddField(
14             model_name='snippet',
15             name='anchor',
16             field=models.CharField(default='', max_length=64),
17             preserve_default=False,
18         ),
19     ]