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.
27 lines
1.0 KiB
27 lines
1.0 KiB
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.6 on 2018-02-19 13:23
|
|
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', '0002_auto_20180218_1910'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='course',
|
|
name='teacher_tokens',
|
|
field=django.contrib.postgres.fields.ArrayField(base_field=models.UUIDField(editable=False, verbose_name='Токен препода'), default=lms.tools.get_empty_list, size=None, verbose_name='Преподователи курса'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='lesson',
|
|
name='material_tokens',
|
|
field=django.contrib.postgres.fields.ArrayField(base_field=models.UUIDField(editable=False, verbose_name='Токен материала'), default=lms.tools.get_empty_list, size=None, verbose_name='Материалы курса'),
|
|
),
|
|
]
|
|
|