blob: 93cecc23dff8c2dd1e1a252cbcaa23ef87eec09b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# -*- coding: utf-8 -*-
# Generated by Django 1.10 on 2018-01-08 20:24
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('booking', '0002_booking_changeid'),
]
operations = [
migrations.AddField(
model_name='booking',
name='reset',
field=models.BooleanField(default=False),
),
migrations.AlterField(
model_name='booking',
name='changeid',
field=models.TextField(blank=True, default='initial', null=True),
),
]
|