OrdersApp/orders_app/migrations/0047_auto_20210501_1203.py
Argyrios Deligiannidis af7c12dc85 SpitiGlykou
2022-06-26 23:37:10 +03:00

29 lines
911 B
Python

# Generated by Django 3.1.7 on 2021-05-01 09:03
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('orders_app', '0046_auto_20210501_0754'),
]
operations = [
migrations.AlterField(
model_name='orderproduct',
name='cake_img',
field=models.ImageField(blank=True, null=True, upload_to=''),
),
migrations.AlterField(
model_name='orderproduct',
name='cake_type',
field=models.CharField(blank=True, choices=[('KARDASIS', 'KARDASIS'), ('PAN DÉCOR', 'PAN DÉCOR'), ('ΦΩΤΟΓΡΑΦΙΑ', 'ΦΩΤΟΓΡΑΦΙΑ')], max_length=45, null=True),
),
migrations.AlterField(
model_name='orderproduct',
name='cream_cake_img',
field=models.ImageField(blank=True, null=True, upload_to=''),
),
]