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

19 lines
511 B
Python

# Generated by Django 4.0.3 on 2023-03-01 08:12
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('receipe', '0019_alter_article_frontimage'),
]
operations = [
migrations.AlterField(
model_name='article',
name='frontImage',
field=models.ImageField(blank=True, default=None, help_text='Front image', null=True, unique=True, upload_to='frontImages', verbose_name='front image'),
),
]