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

manage.py

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    0015_ak_present_field.py 444 B
    # Generated by Django 2.2.6 on 2019-10-18 12:55
    
    from django.db import migrations, models
    
    
    class Migration(migrations.Migration):
    
        dependencies = [
            ('AKModel', '0014_akcategory'),
        ]
    
        operations = [
            migrations.AddField(
                model_name='ak',
                name='present',
                field=models.BooleanField(help_text='Present results of this AK', null=True, verbose_name='Present this AK'),
            ),
        ]