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.
19 lines
631 B
19 lines
631 B
# Generated by Django 2.0.4 on 2018-04-26 09:56
|
|
|
|
import apps.course.models
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('course', '0035_comment_deactivated_at'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='course',
|
|
name='deferred_start_at',
|
|
field=models.DateTimeField(blank=True, help_text='Заполнить если курс отложенный', null=True, validators=[apps.course.models.deferred_start_at_validator], verbose_name='Отложенный запуск курса'),
|
|
),
|
|
]
|
|
|