19 lines
378 B
Python
19 lines
378 B
Python
|
# Generated by Django 2.1.5 on 2019-01-12 23:06
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('rooms', '0002_room_reserved'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='room',
|
||
|
name='reserved',
|
||
|
field=models.BooleanField(default=1),
|
||
|
),
|
||
|
]
|