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
19 lines
434 B
Python
19 lines
434 B
Python
# Generated by Django 4.2.29 on 2026-03-24 09:58
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('leistungstest', '0002_change_total_time_to_seconds'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='leistungstestresultitem',
|
|
name='elapsed_seconds',
|
|
field=models.PositiveIntegerField(default=0),
|
|
),
|
|
]
|