X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/13042ddcb4ad5af860cff616d2a69d4f05dac5d8..0cb33211fcab57efdee7c4d235e3ae0bcb96f7b9:/src/annoy/migrations/0010_auto_20210430_1331.py?ds=inline diff --git a/src/annoy/migrations/0010_auto_20210430_1331.py b/src/annoy/migrations/0010_auto_20210430_1331.py new file mode 100644 index 000000000..0b5b29dcb --- /dev/null +++ b/src/annoy/migrations/0010_auto_20210430_1331.py @@ -0,0 +1,23 @@ +# Generated by Django 2.2.19 on 2021-04-30 11:31 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('annoy', '0009_banner_style'), + ] + + operations = [ + migrations.AddField( + model_name='banner', + name='smallfont', + field=models.BooleanField(default=False, verbose_name='small font'), + ), + migrations.AlterField( + model_name='banner', + name='style', + field=models.CharField(blank=True, choices=[('blackout_full', 'Full screen'), ('blackout_upper', 'Upper half of screen')], help_text='Affects blackout.', max_length=255, verbose_name='style'), + ), + ]