24 lines
622 B
Python
24 lines
622 B
Python
|
# Generated by Django 2.2.4 on 2019-08-06 22:42
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
initial = True
|
||
|
|
||
|
dependencies = [
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
|
name='InvitedGuests',
|
||
|
fields=[
|
||
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||
|
('rsvpCode', models.CharField(max_length=3)),
|
||
|
('name', models.CharField(max_length=500)),
|
||
|
('attending', models.BooleanField(default=False)),
|
||
|
],
|
||
|
),
|
||
|
]
|