# Generated by Django 4.2.3 on 2023-07-21 23:51 import django.core.validators from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('website', '0004_essen'), ] operations = [ migrations.CreateModel( name='Reservierung', fields=[ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('name', models.CharField(max_length=250)), ('mail', models.EmailField(max_length=254)), ('aufführung', models.CharField(choices=[('BOEBLINGEN', 'Böblingen'), ('WUPPERTAL', 'Wuppertal'), ('LUEBECK', 'Lübeck')], max_length=12)), ('anzahl', models.PositiveIntegerField(validators=[django.core.validators.MinValueValidator(0), django.core.validators.MaxValueValidator(7)])), ], ), ]