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

0045_event_tz_pytz_update.py

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    0036_protocol_link.py 662 B
    # Generated by Django 3.0.6 on 2020-05-21 05:24
    
    from django.db import migrations, models
    
    
    class Migration(migrations.Migration):
    
        dependencies = [
            ('AKModel', '0035_event_plan_hidden'),
        ]
    
        operations = [
            migrations.AddField(
                model_name='ak',
                name='protocol_link',
                field=models.URLField(blank=True, help_text='Link to protocol', verbose_name='Protocol Link'),
            ),
            migrations.AddField(
                model_name='historicalak',
                name='protocol_link',
                field=models.URLField(blank=True, help_text='Link to protocol', verbose_name='Protocol Link'),
            ),
        ]