28 lines
864 B
Python
28 lines
864 B
Python
# Generated by Django 2.2.4 on 2019-09-12 17:55
|
|
|
|
from django.db import migrations, models
|
|
import django.utils.timezone
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Booking',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('created', models.DateTimeField(default=django.utils.timezone.now, editable=False, verbose_name='Date created')),
|
|
('modified', models.DateTimeField(auto_now=True, verbose_name='Date updated')),
|
|
('type', models.CharField(choices=[('L', 'Lastable'), ('G', 'GuestOnline')], max_length=2)),
|
|
],
|
|
options={
|
|
'abstract': False,
|
|
},
|
|
),
|
|
]
|