khaganat-web/pages/migrations/0003_auto_20200228_1214.py
Rodolphe Breard 85eb1ff03e Refactor the page edition
Markdown has been removed, pages are now directly edited in HTML. To
ease that process, TinyMCE has been added. Also, the admin dashboard now
provides a file management tool in order to upload stuff.
2020-02-28 13:53:57 +01:00

18 lines
369 B
Python

# Generated by Django 3.0.3 on 2020-02-28 11:14
from django.db import migrations
import tinymce.models
class Migration(migrations.Migration):
dependencies = [
("pages", "0002_page_is_nsfw"),
]
operations = [
migrations.AlterField(
model_name="pagecontent", name="content", field=tinymce.models.HTMLField(),
),
]