0025_homepage_featured_help_text.py 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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(
  12. blank=True,
  13. help_text="Title to display above the featured section 1",
  14. max_length=255,
  15. ),
  16. ),
  17. migrations.AlterField(
  18. model_name="homepage",
  19. name="featured_section_2_title",
  20. field=models.CharField(
  21. blank=True,
  22. help_text="Title to display above the featured section 2",
  23. max_length=255,
  24. ),
  25. ),
  26. migrations.AlterField(
  27. model_name="homepage",
  28. name="featured_section_3_title",
  29. field=models.CharField(
  30. blank=True,
  31. help_text="Title to display above the featured section 3",
  32. max_length=255,
  33. ),
  34. ),
  35. ]