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.
20 lines
635 B
20 lines
635 B
# Generated by Django 2.0.3 on 2018-04-11 13:33
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('content', '0018_content_live_lesson'),
|
|
('school', '0009_auto_20180410_1019'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='livelesson',
|
|
name='cover',
|
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='livelesson_covers', to='content.ImageObject', verbose_name='Обложка урока школы'),
|
|
),
|
|
]
|
|
|