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
719 B
22 lines
719 B
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.6 on 2018-02-22 19:11
|
|
from __future__ import unicode_literals
|
|
|
|
import django.contrib.postgres.fields
|
|
from django.db import migrations, models
|
|
import lms.tools
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('courses', '0004_auto_20180222_1756'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='lesson',
|
|
name='material_tokens',
|
|
field=django.contrib.postgres.fields.ArrayField(base_field=models.UUIDField(editable=False, verbose_name='Токен материала'), blank=True, default=lms.tools.get_empty_list, size=None, verbose_name='Материалы курса'),
|
|
),
|
|
]
|
|
|