# -*- coding: utf-8 -*- # Generated by Django 1.10.5 on 2017-02-20 01:11 from __future__ import unicode_literals from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): dependencies = [ ('blog', '0004_auto_20170218_1103'), ] operations = [ migrations.AlterField( model_name='blogindexpage', name='image', field=models.ForeignKey(blank=True, help_text='Landscape mode only; horizontal width between 1000px and 3000px.', null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='wagtailimages.Image'), ), migrations.AlterField( model_name='blogindexpage', name='introduction', field=models.TextField(blank=True, help_text='Text to describe the page'), ), migrations.AlterField( model_name='blogpage', name='image', field=models.ForeignKey(blank=True, help_text='Landscape mode only; horizontal width between 1000px and 3000px.', null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='wagtailimages.Image'), ), migrations.AlterField( model_name='blogpage', name='introduction', field=models.TextField(blank=True, help_text='Text to describe the page'), ), ]