Closes #28. Replace hardcoded calendar times with admin-editable start_time/end_time so event cards show real schedules.
24 lines
573 B
Python
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),
|
|
),
|
|
]
|