1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
theorangeone.net-legacy/project/home/migrations/0003_homepage_body.py

22 lines
490 B
Python
Raw Normal View History

2016-11-22 21:50:21 +00:00
# -*- coding: utf-8 -*-
# Generated by Django 1.10.3 on 2016-11-18 22:28
from __future__ import unicode_literals
from django.db import migrations
import wagtail.wagtailcore.fields
class Migration(migrations.Migration):
dependencies = [
('home', '0002_create_homepage'),
]
operations = [
migrations.AddField(
model_name='homepage',
name='body',
field=wagtail.wagtailcore.fields.RichTextField(blank=True),
),
]