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
729 B
22 lines
729 B
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.6 on 2018-04-27 12:26
|
|
from __future__ import unicode_literals
|
|
|
|
import django.contrib.postgres.fields
|
|
from django.db import migrations, models
|
|
import lms.tools
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('progress', '0012_auto_20180427_1220'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='progresslesson',
|
|
name='dif_check_timestamps',
|
|
field=django.contrib.postgres.fields.ArrayField(base_field=models.IntegerField(verbose_name='Время проверки'), default=lms.tools.get_empty_list, size=None, verbose_name='Временные интервалы проверок'),
|
|
),
|
|
]
|
|
|