23 lines
543 B
Python
23 lines
543 B
Python
|
|
# Generated by Django 5.1.1 on 2025-11-15 02:54
|
||
|
|
|
||
|
|
from django.db import migrations, models
|
||
|
|
|
||
|
|
|
||
|
|
class Migration(migrations.Migration):
|
||
|
|
|
||
|
|
dependencies = [
|
||
|
|
('events', '0036_promo_calendar_alter_promo_promo_type'),
|
||
|
|
]
|
||
|
|
|
||
|
|
operations = [
|
||
|
|
migrations.RemoveField(
|
||
|
|
model_name='promo',
|
||
|
|
name='calendar',
|
||
|
|
),
|
||
|
|
migrations.AddField(
|
||
|
|
model_name='promo',
|
||
|
|
name='calendar',
|
||
|
|
field=models.ManyToManyField(blank=True, null=True, to='events.calendar'),
|
||
|
|
),
|
||
|
|
]
|