0025_homepage_featured_help_text.py 998 B

12345678910111213141516171819202122232425262728
  1. # Generated by Django 5.2.3 on 2025-06-27 16:43
  2. from django.db import migrations, models
  3. class Migration(migrations.Migration):
  4. dependencies = [
  5. ('base', '0024_alter_formpage_body_alter_gallerypage_body_and_more'),
  6. ]
  7. operations = [
  8. migrations.AlterField(
  9. model_name='homepage',
  10. name='featured_section_1_title',
  11. field=models.CharField(blank=True, help_text='Title to display above the featured section 1', max_length=255),
  12. ),
  13. migrations.AlterField(
  14. model_name='homepage',
  15. name='featured_section_2_title',
  16. field=models.CharField(blank=True, help_text='Title to display above the featured section 2', max_length=255),
  17. ),
  18. migrations.AlterField(
  19. model_name='homepage',
  20. name='featured_section_3_title',
  21. field=models.CharField(blank=True, help_text='Title to display above the featured section 3', max_length=255),
  22. ),
  23. ]