Add the possbility to provide descriptions (#32)

to class, rolling stock, book
This commit is contained in:
2024-03-02 15:45:42 +01:00
committed by GitHub
parent e7d34ce8e0
commit 4b74a69f3f
9 changed files with 66 additions and 3 deletions

View File

@@ -0,0 +1,19 @@
# Generated by Django 5.0.2 on 2024-03-02 14:31
import tinymce.models
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("bookshelf", "0012_alter_book_notes"),
]
operations = [
migrations.AddField(
model_name="book",
name="description",
field=tinymce.models.HTMLField(blank=True),
),
]