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.
18 lines
629 B
18 lines
629 B
# Generated by Django 2.0.2 on 2018-02-21 11:20
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('school', '0003_auto_20180221_0901'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='schoolschedule',
|
|
name='weekday',
|
|
field=models.PositiveSmallIntegerField(choices=[(1, 'понедельник'), (2, 'вторник'), (3, 'среда'), (4, 'четверг'), (5, 'пятница'), (6, 'суббота'), (7, 'воскресенье')], unique=True, verbose_name='День недели'),
|
|
),
|
|
]
|
|
|