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
613 B
20 lines
613 B
# Generated by Django 2.0.3 on 2018-04-10 08:51
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('school', '0008_livelesson'),
|
|
('content', '0017_auto_20180406_1847'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='content',
|
|
name='live_lesson',
|
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='content', to='school.LiveLesson', verbose_name='Урок онлайн школы'),
|
|
),
|
|
]
|
|
|