0005_locationoperatinghours_closed.py 572 B

123456789101112131415161718192021
  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.10.5 on 2017-02-15 13:38
  3. from __future__ import unicode_literals
  4. from django.db import migrations, models
  5. class Migration(migrations.Migration):
  6. dependencies = [
  7. ('locations', '0004_auto_20170215_1334'),
  8. ]
  9. operations = [
  10. migrations.AddField(
  11. model_name='locationoperatinghours',
  12. name='closed',
  13. field=models.BooleanField(default='False', help_text='Tick if location is closed', verbose_name='Closed?'),
  14. preserve_default=False,
  15. ),
  16. ]