From bbb73a90d8f648402658b42b04c3cc34066395ce Mon Sep 17 00:00:00 2001 From: Ian Stride Date: Thu, 7 Dec 2023 19:39:00 +0000 Subject: [PATCH] Create migration --- home/migrations/0054_auto_20231207_1936.py | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 home/migrations/0054_auto_20231207_1936.py diff --git a/home/migrations/0054_auto_20231207_1936.py b/home/migrations/0054_auto_20231207_1936.py new file mode 100644 index 000000000..ef2226bdf --- /dev/null +++ b/home/migrations/0054_auto_20231207_1936.py @@ -0,0 +1,36 @@ +# Generated by Django 3.2.23 on 2023-12-07 19:36 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + dependencies = [ + ("home", "0053_alter_sitesettings_mtm_container_id"), + ] + + operations = [ + migrations.AlterField( + model_name="themesettings", + name="navbar_background_color", + field=models.CharField( + blank=True, + default="#0094F4", + help_text="The background color of the navbar as a HEX code", + max_length=8, + null=True, + verbose_name="Flat menu background color", + ), + ), + migrations.AlterField( + model_name="themesettings", + name="navbar_font_color", + field=models.CharField( + blank=True, + default="#FFFFFF", + help_text="The font color of the navbar as a HEX code", + max_length=8, + null=True, + verbose_name="Flat menu font color", + ), + ), + ]