19 lines
472 B
Python
19 lines
472 B
Python
|
|
# Generated by Django 5.1.1 on 2026-01-13 00:13
|
||
|
|
|
||
|
|
from django.db import migrations, models
|
||
|
|
|
||
|
|
|
||
|
|
class Migration(migrations.Migration):
|
||
|
|
|
||
|
|
dependencies = [
|
||
|
|
('events', '0040_alter_calendar_options_alter_organization_cal'),
|
||
|
|
]
|
||
|
|
|
||
|
|
operations = [
|
||
|
|
migrations.AlterField(
|
||
|
|
model_name='event',
|
||
|
|
name='calendar',
|
||
|
|
field=models.ManyToManyField(blank=True, null=True, related_name='events', to='events.calendar'),
|
||
|
|
),
|
||
|
|
]
|