receipe-django-react/receipeServer/receipe/migrations/0019_alter_article_frontimage.py
2023-11-09 18:47:11 +01:00

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'),
),
]