mirror of
https://github.com/daniviga/django-ram.git
synced 2025-08-04 13:17:50 +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
21 lines
488 B
Python
21 lines
488 B
Python
# Generated by Django 4.1 on 2022-08-23 15:54
|
|
|
|
# ckeditor removal
|
|
# import ckeditor_uploader.fields
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("roster", "0009_alter_rollingstock_options_and_more"),
|
|
]
|
|
|
|
operations = [
|
|
# migrations.AlterField(
|
|
# model_name="rollingstock",
|
|
# name="notes",
|
|
# field=ckeditor_uploader.fields.RichTextUploadingField(blank=True),
|
|
# ),
|
|
]
|