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.
23 lines
767 B
23 lines
767 B
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.6 on 2018-05-11 12:08
|
|
from __future__ import unicode_literals
|
|
|
|
import courses.models
|
|
import django.contrib.postgres.fields
|
|
from django.db import migrations, models
|
|
import lms.tools
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('courses', '0007_lesson_materials'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='lesson',
|
|
name='materials',
|
|
field=django.contrib.postgres.fields.ArrayField(base_field=models.FileField(max_length=255, upload_to=courses.models.upload_material, verbose_name='Материал к уроку'), default=lms.tools.get_empty_list, size=None, verbose_name='Материалы к уроку'),
|
|
),
|
|
]
|
|
|