This commit is contained in:
Joachim
2021-05-25 23:04:28 +02:00
parent d1737b44bd
commit fa7334826c
9 changed files with 195 additions and 61 deletions

View File

@ -12,10 +12,8 @@ class Migration(migrations.Migration):
operations = [
migrations.AddField(
model_name="edition",
name="preview_image",
field=bookwyrm.models.fields.ImageField(
blank=True, null=True, upload_to="previews/"
),
model_name='book',
name='preview_image',
field=bookwyrm.models.fields.ImageField(blank=True, null=True, upload_to='cover_previews/'),
),
]