mirror of
https://github.com/daniviga/django-ram.git
synced 2025-08-04 13:17:50 +02:00
20 lines
457 B
Python
20 lines
457 B
Python
# Generated by Django 4.1 on 2022-08-23 15:54
|
|
|
|
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),
|
|
),
|
|
]
|