[CHANGE] Consolidate migrations

This commit is contained in:
Peter Pfeufer 2024-08-14 13:25:49 +02:00
parent 710149ec21
commit ecc9e68330
No known key found for this signature in database
GPG Key ID: 6051D2C6AD4EBC27
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",

View File

@ -1,22 +0,0 @@
# Generated by Django 4.2.15 on 2024-08-10 15:56
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("custom_css", "0001_initial"),
]
operations = [
migrations.AlterField(
model_name="customcss",
name="css",
field=models.TextField(
blank=True,
help_text="Custom CSS that will be added to the site. This CSS will be added to the site after the default CSS.",
null=True,
),
),
]

View File

@ -1,23 +0,0 @@
# Generated by Django 4.2.15 on 2024-08-10 15:58
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("custom_css", "0002_alter_customcss_css"),
]
operations = [
migrations.AlterField(
model_name="customcss",
name="css",
field=models.TextField(
blank=True,
help_text="Custom CSS that will be added to the site. This CSS will be added to the site after the default CSS.",
null=True,
verbose_name="Your custom CSS",
),
),
]

View File

@ -1,23 +0,0 @@
# Generated by Django 4.2.15 on 2024-08-10 15:58
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("custom_css", "0003_alter_customcss_css"),
]
operations = [
migrations.AlterField(
model_name="customcss",
name="css",
field=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",
),
),
]

View File

@ -1,18 +0,0 @@
# Generated by Django 4.2.15 on 2024-08-14 09:35
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("custom_css", "0004_alter_customcss_css"),
]
operations = [
migrations.AddField(
model_name="customcss",
name="timestamp",
field=models.DateTimeField(auto_now=True),
),
]