Skip to content

Commit

Permalink
Create migration
Browse files Browse the repository at this point in the history
  • Loading branch information
istride committed Dec 7, 2023
1 parent a0c82a3 commit bbb73a9
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions home/migrations/0054_auto_20231207_1936.py
Original file line number Diff line number Diff line change
@@ -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",
),
),
]

0 comments on commit bbb73a9

Please sign in to comment.