21 lines
492 B
Python
21 lines
492 B
Python
# Generated by Django 5.2.1 on 2025-06-15 14:32
|
|
|
|
import imagekit.models.fields
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('product', '0018_product_is_front'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='product',
|
|
name='thumb',
|
|
field=imagekit.models.fields.ProcessedImageField(default=1, upload_to='uploads/thumb/%Y'),
|
|
preserve_default=False,
|
|
),
|
|
]
|