You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
504 B
19 lines
504 B
# Generated by Django 3.2.3 on 2021-07-25 14:02
|
|
|
|
import commons.uploads
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('www', '0003_showcasefeature'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='blogpost',
|
|
name='featured_image',
|
|
field=models.ImageField(blank=True, help_text='Feature image - any web-safe format', upload_to=commons.uploads.segmented_upload_to),
|
|
),
|
|
]
|
|
|