Skip to content
Snippets Groups Projects
Select Git revision
  • d7c63bc0879d3a566a77bc7c382933bfe8135e31
  • main default protected
  • renovate/django-bootstrap5-25.x
  • renovate/django-debug-toolbar-6.x
  • renovate/jsonschema-4.x
  • renovate/django-5.x
  • koma/feature/preference-polling-form
7 results

serializers.py

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    0064_event_export_slot.py 672 B
    # Generated by Django 5.1.6 on 2025-03-29 22:05
    
    from django.db import migrations, models
    
    
    class Migration(migrations.Migration):
    
        dependencies = [
            ("AKModel", "0063_field_validators"),
        ]
    
        operations = [
            migrations.AddField(
                model_name="event",
                name="export_slot",
                field=models.DecimalField(
                    decimal_places=2,
                    default=1,
                    help_text="Slot duration in hours that is used in the timeslot discretization, when this event is exported for the solver.",
                    max_digits=4,
                    verbose_name="Export Slot Length",
                ),
            ),
        ]