3fefc550fe
- Django backend with DRF (clubs, wrestlers, trainers, exercises, templates, trainings, homework, locations, leistungstest) - Next.js 16 frontend with React, Shadcn UI, Tailwind - JWT authentication - Full CRUD for all entities - Calendar view for trainings - Homework management system - Leistungstest tracking
22 lines
654 B
Python
22 lines
654 B
Python
# Generated by Django 4.2.29 on 2026-03-20 14:29
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('homework', '0002_homeworkassignment_homeworkassignmentitem_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddIndex(
|
|
model_name='homeworkassignmentitem',
|
|
index=models.Index(fields=['assignment', 'is_completed'], name='homework_ho_assignm_791a15_idx'),
|
|
),
|
|
migrations.AddIndex(
|
|
model_name='homeworkassignmentitem',
|
|
index=models.Index(fields=['completion_date'], name='homework_ho_complet_55c380_idx'),
|
|
),
|
|
]
|