Skip to content
Snippets Groups Projects
0015_ak_present_field.py 444 B
Newer Older
  • Learn to ignore specific revisions
  • # 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'),
            ),
        ]