24 lines
626 B
Python
24 lines
626 B
Python
# Generated by Django 3.0.5 on 2020-06-02 15:28
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('cocktail_list', '0006_bicchieri'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='bicchieri',
|
|
name='immagine_bicchieri',
|
|
field=models.ImageField(blank=True, null=True, upload_to='bicchiere'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='strumenti',
|
|
name='immagine_strumenti',
|
|
field=models.ImageField(blank=True, null=True, upload_to='strumento'),
|
|
),
|
|
]
|