Skip to content
Snippets Groups Projects
Select Git revision
  • 85e7c5092a77edd1899ab3d1f9038dc6dba373b1
  • main default protected
  • renovate/django-5.x
  • koma/feature/preference-polling-form
4 results

0070_requirements_relevant_for_participants.py

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    0070_requirements_relevant_for_participants.py 532 B
    # Generated by Django 5.2.3 on 2025-06-18 10:47
    
    from django.db import migrations, models
    
    
    class Migration(migrations.Migration):
    
        dependencies = [
            ('AKModel', '0069_merge_20250617_1844'),
        ]
    
        operations = [
            migrations.AddField(
                model_name='akrequirement',
                name='relevant_for_participants',
                field=models.BooleanField(default=False, help_text='Show this requirement when collecting participant preferences', verbose_name='Relevant for Participants?'),
            ),
        ]