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
626 B
20 lines
626 B
# Generated by Django 2.0.6 on 2018-08-24 19:56
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('content', '0022_auto_20180815_2129'),
|
|
('school', '0018_auto_20180629_1501'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='schoolschedule',
|
|
name='cover',
|
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='schoolschedule_cover', to='content.ImageObject', verbose_name='Обложка дня'),
|
|
),
|
|
]
|
|
|