19 lines
500 B
Python
19 lines
500 B
Python
# Generated by Django 4.0.3 on 2023-02-24 16:18
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('receipe', '0014_category_article_category'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='article',
|
|
name='frontImage',
|
|
field=models.ImageField(default=None, help_text='Front image', null=True, unique=True, upload_to='frontImages', verbose_name='front image'),
|
|
),
|
|
]
|