85eb1ff03e
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.
17 lines
369 B
Python
17 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(),
|
|
),
|
|
]
|