# Generated by Django 4.2.13 on 2025-02-06 16:09

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ("AKModel", "0060_orga_message_resolved"),
    ]

    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",
            ),
        ),
    ]