Files
WrestleDesk/backend/leistungstest/migrations/0002_change_total_time_to_seconds.py
Andrej Spielmann 3fefc550fe Initial commit: WrestleDesk full project
- 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
2026-03-26 13:24:57 +01:00

19 lines
396 B
Python

# Generated by Django 4.2.29 on 2026-03-24 08:14
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('leistungstest', '0001_initial'),
]
operations = [
migrations.RenameField(
model_name='leistungstestresult',
old_name='total_time_minutes',
new_name='total_time_seconds',
),
]