26 lines
753 B
Python
26 lines
753 B
Python
# Generated by Django 3.0.5 on 2020-06-02 15:19
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('cocktail_list', '0005_strumenti'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Bicchieri',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('nome_bicchiere', models.CharField(max_length=100)),
|
|
('descrizione', models.CharField(max_length=240)),
|
|
],
|
|
options={
|
|
'verbose_name': 'Bicchiere per Cocktails',
|
|
'verbose_name_plural': 'Bicchieri per Cocktails',
|
|
},
|
|
),
|
|
]
|