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.
 
 
 
 
 
 

31 lines
1.1 KiB

# -*- coding: utf-8 -*-
# Generated by Django 1.9.3 on 2016-09-06 16:41
from __future__ import unicode_literals
from django.db import migrations
import redactor.fields
class Migration(migrations.Migration):
dependencies = [
('practice', '0018_auto_20160906_1616'),
]
operations = [
migrations.AddField(
model_name='workshop',
name='variables',
field=redactor.fields.RedactorField(blank=True, default='', verbose_name='Описание переменных'),
),
migrations.AlterField(
model_name='workshop',
name='content',
field=redactor.fields.RedactorField(blank=True, default='', help_text='Добавление в /<body/>, после описаний и решений', verbose_name='Описание методов'),
),
migrations.AlterField(
model_name='workshop',
name='description',
field=redactor.fields.RedactorField(blank=True, default='', null=True, verbose_name='Описание задачи'),
),
]