# Generated by Django 5.2.13 on 2026-06-08 13:02 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('pages', '0015_video_support'), ] operations = [ migrations.AddField( model_name='aboutsection', name='video_styled_background', field=models.BooleanField(default=False, help_text='Glass panel with ambient glow (similar to the Downloads section).'), ), migrations.AddField( model_name='custompagesection', name='video_styled_background', field=models.BooleanField(default=False, help_text='Glass panel with ambient glow (similar to the Downloads section).'), ), migrations.AddField( model_name='homepagesection', name='video_styled_background', field=models.BooleanField(default=False, help_text='Glass panel with ambient glow (similar to the Downloads section).'), ), migrations.AddField( model_name='pagevideo', name='video_styled_background', field=models.BooleanField(default=False, help_text='Glass panel with ambient glow (similar to the Downloads section).'), ), ]