27 lines
821 B
Python
27 lines
821 B
Python
|
|
# Generated by Django 5.1.1 on 2025-10-05 07:56
|
||
|
|
|
||
|
|
from django.db import migrations, models
|
||
|
|
|
||
|
|
|
||
|
|
class Migration(migrations.Migration):
|
||
|
|
|
||
|
|
dependencies = [
|
||
|
|
('events', '0024_tags_event_tags_organization_tags_promo_tags'),
|
||
|
|
]
|
||
|
|
|
||
|
|
operations = [
|
||
|
|
migrations.CreateModel(
|
||
|
|
name='Calendars',
|
||
|
|
fields=[
|
||
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||
|
|
('name', models.CharField(max_length=31, unique=True)),
|
||
|
|
('desc', models.TextField(blank=True, null=True)),
|
||
|
|
],
|
||
|
|
),
|
||
|
|
migrations.AddField(
|
||
|
|
model_name='organization',
|
||
|
|
name='calendars',
|
||
|
|
field=models.ManyToManyField(blank=True, null=True, to='events.calendars'),
|
||
|
|
),
|
||
|
|
]
|