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

0016_category_description.py

Blame
  • Benjamin Hättasch's avatar
    Benjamin Hättasch authored
    Add description to category model
    Show tabbed list of different categories of AKs on submission overview
    0ef613db
    History
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    0016_category_description.py 467 B
    # Generated by Django 2.2.6 on 2019-10-20 17:47
    
    from django.db import migrations, models
    
    
    class Migration(migrations.Migration):
    
        dependencies = [
            ('AKModel', '0015_ak_present_field'),
        ]
    
        operations = [
            migrations.AddField(
                model_name='akcategory',
                name='description',
                field=models.TextField(blank=True, help_text='Short description of this AK Category', verbose_name='Description'),
            ),
        ]