Publishing tags.
[redakcja.git] / src / catalogue / migrations / 0045_author_century_of_birth_author_century_of_death.py
1 # Generated by Django 4.0.6 on 2023-01-27 16:10
2
3 from django.db import migrations, models
4
5
6 class Migration(migrations.Migration):
7
8     dependencies = [
9         ('catalogue', '0044_epoch_description_genre_description_kind_description'),
10     ]
11
12     operations = [
13         migrations.AddField(
14             model_name='author',
15             name='century_of_birth',
16             field=models.SmallIntegerField(blank=True, help_text='Set if year unknown. Negative for BC.', null=True, verbose_name='century of birth'),
17         ),
18         migrations.AddField(
19             model_name='author',
20             name='century_of_death',
21             field=models.SmallIntegerField(blank=True, help_text='Set if year unknown. Negative for BC.', null=True, verbose_name='century of death'),
22         ),
23     ]