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
677 B
22 lines
677 B
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.6 on 2018-02-19 13:17
|
|
from __future__ import unicode_literals
|
|
|
|
import django.contrib.postgres.fields
|
|
from django.db import migrations, models
|
|
import progress.models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('progress', '0004_progress_is_finish'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='progresslesson',
|
|
name='comment_tokens',
|
|
field=django.contrib.postgres.fields.ArrayField(base_field=models.UUIDField(editable=False, verbose_name='Токен комента'), default=progress.models.get_empty_list, size=None),
|
|
),
|
|
]
|
|
|