Development Override Compose File
[laas.git] / src / booking / migrations / 0004_booking_ext_count.py
1 ##############################################################################
2 # Copyright (c) 2018 Sawyer Bergeron and others.
3 #
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
9
10 from __future__ import unicode_literals
11
12 from django.db import migrations, models
13
14
15 class Migration(migrations.Migration):
16
17     dependencies = [
18         ('booking', '0003_auto_20180108_2024'),
19     ]
20
21     operations = [
22         migrations.AddField(
23             model_name='booking',
24             name='ext_count',
25             field=models.IntegerField(default=2),
26         ),
27     ]