0016_auto_20170315_0644.py 633 B

1234567891011121314151617181920
  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.10.5 on 2017-03-15 06:44
  3. from __future__ import unicode_literals
  4. from django.db import migrations, models
  5. class Migration(migrations.Migration):
  6. dependencies = [
  7. ('locations', '0015_auto_20170308_0806'),
  8. ]
  9. operations = [
  10. migrations.AlterField(
  11. model_name='locationoperatinghours',
  12. name='day',
  13. field=models.CharField(choices=[('MON', 'Monday'), ('TUES', 'Tuesday'), ('WED', 'Wednesday'), ('THUR', 'Thursday'), ('FRI', 'Friday'), ('SAT', 'Saturday'), ('SUN', 'Sunday')], default='MON', max_length=4),
  14. ),
  15. ]