29 lines
911 B
Python
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=''),
|
|
),
|
|
]
|