[CHANGE] Consolidate migrations

This commit is contained in:
Peter Pfeufer
2024-08-14 13:25:49 +02:00
parent 710149ec21
commit ecc9e68330
5 changed files with 11 additions and 88 deletions

View File

@@ -1,4 +1,4 @@
# Generated by Django 4.2.15 on 2024-08-10 15:53
# Generated by Django 4.2.15 on 2024-08-14 11:25
from django.db import migrations, models
@@ -22,7 +22,16 @@ class Migration(migrations.Migration):
verbose_name="ID",
),
),
("css", models.TextField()),
(
"css",
models.TextField(
blank=True,
help_text="This CSS will be added to the site after the default CSS.",
null=True,
verbose_name="Your custom CSS",
),
),
("timestamp", models.DateTimeField(auto_now=True)),
],
options={
"verbose_name": "Custom CSS",