mirror of
https://github.com/ajurna/cbwebreader.git
synced 2025-12-06 06:17:17 +00:00
Rewrite of Comic lists so that tehy have thumbnails. (#26)
This commit is contained in:
19
comic/migrations/0022_comicbook_thumbnail.py
Normal file
19
comic/migrations/0022_comicbook_thumbnail.py
Normal file
@@ -0,0 +1,19 @@
|
||||
# Generated by Django 3.2 on 2021-04-21 11:13
|
||||
|
||||
from django.db import migrations
|
||||
import imagekit.models.fields
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('comic', '0021_delete_setting'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='comicbook',
|
||||
name='thumbnail',
|
||||
field=imagekit.models.fields.ProcessedImageField(null=True, upload_to='thumbs'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user