Changes in the event model to take the event source

This commit is contained in:
Vivek
2025-12-20 04:05:07 +05:30
parent 2cd2c763f6
commit 8488df7c14
4 changed files with 49 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 5.0 on 2025-12-19 22:31
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('events', '0004_event_all_year_event_alter_event_end_date_and_more'),
]
operations = [
migrations.AddField(
model_name='event',
name='source',
field=models.CharField(blank=True, choices=[('eventify', 'Eventify'), ('community', 'Community')], max_length=250),
),
]