forked from mirrors/bookwyrm
18 lines
420 B
Python
18 lines
420 B
Python
# Generated by Django 3.2 on 2021-05-24 18:03
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("bookwyrm", "0075_announcement"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="book",
|
|
name="preview_image",
|
|
field=models.ImageField(blank=True, null=True, upload_to="cover_previews/"),
|
|
),
|
|
]
|