24 lines
610 B
Python
24 lines
610 B
Python
# Generated by Django 3.1.7 on 2021-04-30 21:32
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('orders_app', '0044_auto_20210501_0006'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='orderproduct',
|
|
name='cake_img',
|
|
field=models.ImageField(blank=True, null=True, upload_to=''),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='orderproduct',
|
|
name='cream_cake_img',
|
|
field=models.ImageField(blank=True, null=True, upload_to=''),
|
|
),
|
|
]
|