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