Cocktail-DB/cocktail_list/migrations/0003_auto_20200526_1705.py

19 lines
986 B
Python
Raw Normal View History

# Generated by Django 3.0.5 on 2020-05-26 17:05
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('cocktail_list', '0002_cocktail_immagine_cocktail'),
]
operations = [
migrations.AlterField(
model_name='ingredienti',
name='quantitá',
field=models.CharField(choices=[('5ML', '5 ml'), ('10ML', '10 ml'), ('15ML', '15 ml'), ('20ML', '20 ml'), ('25ML', '25 ml'), ('30ML', '30 ml'), ('35ML', '35 ml'), ('40ML', '40 ml'), ('45ML', '45 ml'), ('50ML', '50 ml'), ('55ML', '55 ml'), ('60ML', '60 ml'), ('65ML', '65 ml'), ('70ML', '70 ml'), ('75ML', '75 ml'), ('80ML', '80 ml'), ('85ML', '85 ml'), ('90ML', '90 ml'), ('95ML', '95 ml'), ('100ML', '100 ml'), ('1Goccia', '1 goccia'), ('2Gocce', '2 goccie'), ('3Gocce', '3 goccie'), ('4Gocce', '4 goccie'), ('5Gocce', '5 goccie'), ('Cubetti', '3 Cubetti'), ('Spruzzo', '1 Spruzzo')], default='5ML', max_length=30),
),
]