2017-03-08 22:04:25 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Generated by Django 1.10.5 on 2017-03-08 19:25
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from django.db import migrations
|
2019-05-13 15:11:16 +00:00
|
|
|
import wagtail.core.fields
|
2017-03-08 22:04:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
|
|
|
('home', '0005_auto_20170308_2023'),
|
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AlterField(
|
|
|
|
model_name='homepage',
|
|
|
|
name='body_de',
|
2019-05-13 15:11:16 +00:00
|
|
|
field=wagtail.core.fields.RichTextField(blank=True, default=''),
|
2017-03-08 22:04:25 +00:00
|
|
|
),
|
|
|
|
migrations.AlterField(
|
|
|
|
model_name='homepage',
|
|
|
|
name='body_fr',
|
2019-05-13 15:11:16 +00:00
|
|
|
field=wagtail.core.fields.RichTextField(blank=True, default=''),
|
2017-03-08 22:04:25 +00:00
|
|
|
),
|
|
|
|
]
|