mirror of
https://github.com/ajurna/cbwebreader.git
synced 2025-12-06 22:27:19 +00:00
20 lines
451 B
Python
20 lines
451 B
Python
# Generated by Django 3.2 on 2021-04-21 17:44
|
|
|
|
from django.db import migrations
|
|
import imagekit.models.fields
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('comic', '0022_comicbook_thumbnail'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='directory',
|
|
name='thumbnail',
|
|
field=imagekit.models.fields.ProcessedImageField(null=True, upload_to='thumbs'),
|
|
),
|
|
]
|