API KEYS working

This commit is contained in:
2025-10-11 20:21:01 -05:00
parent aef63f1a08
commit e2e8757452
7 changed files with 51 additions and 10 deletions

View File

@@ -0,0 +1,23 @@
# Generated by Django 5.1.1 on 2025-10-11 16:21
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('events', '0027_scraper_new_items'),
]
operations = [
migrations.AddField(
model_name='event',
name='live',
field=models.CharField(choices=[('live', 'Live & Direct'), ('virt', 'Virtually Served'), ('both', 'How you prefer.')], default='live', max_length=4),
),
migrations.AlterField(
model_name='event',
name='event_type',
field=models.CharField(choices=[('Ot', 'Other'), ('Mu', 'Music'), ('Va', 'Visual Art'), ('Gv', 'Government'), ('Ce', 'Civic Engagement'), ('Ed', 'Educational'), ('Ma', 'Mutual Aid'), ('Th', 'Theater'), ('Co', 'Comedy')], default='Mu', max_length=15),
),
]