X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/610f37f94856721da69493d9fae346b977d75dfb..4b200d823f0ec79279da035a46d0d888693ca2fe:/src/catalogue/migrations/0039_author_photo_author_photo_attribution_and_more.py?ds=sidebyside diff --git a/src/catalogue/migrations/0039_author_photo_author_photo_attribution_and_more.py b/src/catalogue/migrations/0039_author_photo_author_photo_attribution_and_more.py new file mode 100644 index 00000000..2f94a562 --- /dev/null +++ b/src/catalogue/migrations/0039_author_photo_author_photo_attribution_and_more.py @@ -0,0 +1,33 @@ +# Generated by Django 4.0.6 on 2022-09-26 16:21 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('catalogue', '0038_book_original_year'), + ] + + operations = [ + migrations.AddField( + model_name='author', + name='photo', + field=models.ImageField(blank=True, null=True, upload_to='catalogue/author/'), + ), + migrations.AddField( + model_name='author', + name='photo_attribution', + field=models.CharField(blank=True, max_length=255), + ), + migrations.AddField( + model_name='author', + name='photo_source', + field=models.CharField(blank=True, max_length=255), + ), + migrations.AddField( + model_name='author', + name='plwiki', + field=models.CharField(blank=True, max_length=255), + ), + ]