Skip to content

Commit

Permalink
Add migration for PurpleMode migration to GenericSetting
Browse files Browse the repository at this point in the history
Rather than SiteSetting
  • Loading branch information
haydngreatnews committed Sep 3, 2024
1 parent 029d0a1 commit 45c5b66
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions cdhweb/pages/migrations/0061_purplemode_to_genericsetting.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Generated by Django 5.0.8 on 2024-09-03 00:35

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('cdhpages', '0060_alter_contentpage_body_alter_homepage_body_and_more'),
]

operations = [
migrations.RemoveField(
model_name='purplemode',
name='site',
),
migrations.AlterField(
model_name='purplemode',
name='purple_mode',
field=models.BooleanField(default=False, help_text='\n This will turn the site purple by transforming\n all shades of cyan on the site into shades of\n purple\n '),
),
]

0 comments on commit 45c5b66

Please sign in to comment.