24 lines
878 B
Python
24 lines
878 B
Python
# Generated by Django 5.0.2 on 2026-05-17 14:59
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('pages', '0005_homepage_sections'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='homepagesectionitem',
|
|
name='image',
|
|
field=models.ImageField(blank=True, help_text='Logo or image (used for Supporters cards).', null=True, upload_to='homepage/items/'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='homepagesection',
|
|
name='section_type',
|
|
field=models.CharField(choices=[('features', 'Features'), ('screenshots', 'Screenshots Gallery'), ('products', 'Products'), ('problems', 'Problems / Value Proposition'), ('about_strip', 'About Strip'), ('supporters', 'Supporters')], max_length=30, unique=True),
|
|
),
|
|
]
|