20 lines
546 B
Python
20 lines
546 B
Python
# Generated by Django 4.0.3 on 2023-03-01 08:10
|
|
|
|
from django.db import migrations
|
|
import receipe.models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('receipe', '0018_alter_article_frontimage_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='article',
|
|
name='frontImage',
|
|
field=receipe.models.ImageNullField(blank=True, default=None, help_text='Front image', null=True, unique=True, upload_to='frontImages', verbose_name='front image'),
|
|
),
|
|
]
|