You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

22 lines
760 B

# Generated by Django 2.0.7 on 2019-05-15 12:07
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('school', '0024_schoolschedule_is_camp'),
]
operations = [
migrations.AlterField(
model_name='schoolschedule',
name='weekday',
field=models.PositiveSmallIntegerField(choices=[(1, 'понедельник'), (2, 'вторник'), (3, 'среда'), (4, 'четверг'), (5, 'пятница'), (6, 'суббота'), (7, 'воскресенье')], verbose_name='День недели'),
),
migrations.AlterUniqueTogether(
name='schoolschedule',
unique_together={('weekday', 'is_camp')},
),
]