# Generated by Django 6.0.4 on 2026-06-07 04:17

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('core', '0002_seed_rbac'),
    ]

    operations = [
        migrations.AddField(
            model_name='appconfig',
            name='calendar_default_view',
            field=models.CharField(choices=[('week', 'Week'), ('month', 'Month')], default='week', max_length=10),
        ),
    ]
