mirror of
https://github.com/daniviga/django-ram.git
synced 2025-08-04 21:27:49 +02:00
* Replace ckeditor with tinymce due to deprecation * Remove any ckeditor dependency from old migrations Disable alters, replace create with plain models.TextField * Reformat files * Add more hardening in image_upload
20 lines
405 B
Python
20 lines
405 B
Python
# Generated by Django 5.0.2 on 2024-02-17 12:19
|
|
|
|
import tinymce.models
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("bookshelf", "0011_alter_book_language"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="book",
|
|
name="notes",
|
|
field=tinymce.models.HTMLField(blank=True),
|
|
),
|
|
]
|