Files
scha/schasite/migrations/0013_calendarevent_start_end_time.py
T
westfarn ac9330f366
CI / test (pull_request) Successful in 4s
Unit Tests / test (pull_request) Successful in 3s
Add start/end time fields to CalendarEvent.
Closes #28. Replace hardcoded calendar times with admin-editable
start_time/end_time so event cards show real schedules.
2026-08-04 12:59:58 -05:00

24 lines
573 B
Python

# Generated by Django 6.0.7 on 2026-08-04 17:59
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('schasite', '0012_alter_payments_date'),
]
operations = [
migrations.AddField(
model_name='calendarevent',
name='end_time',
field=models.TimeField(blank=True, null=True),
),
migrations.AddField(
model_name='calendarevent',
name='start_time',
field=models.TimeField(blank=True, null=True),
),
]