feat(ClubTeam): add planned league name field and localization updates
All checks were successful
Deploy tt-tagebuch / deploy (push) Successful in 34s

- Introduced a new field for planned league name in the ClubTeam model, allowing for better team categorization.
- Updated create and update club team endpoints to handle the new planned league name field.
- Enhanced the PDF generation feature to include planned league name in the output.
- Improved localization files across multiple languages to incorporate new terms related to the planned league, ensuring a consistent user experience.
- Updated the TeamManagementView to display and edit the planned league name, enhancing user interaction.
This commit is contained in:
Torsten Schulz (local)
2026-04-02 08:17:13 +02:00
parent 9454761e34
commit 68b8455340
21 changed files with 143 additions and 22 deletions

View File

@@ -0,0 +1,6 @@
-- Optional: manuell gepflegte geplante Spielklasse (unabhängig von league / MyTischtennis)
ALTER TABLE `club_team`
ADD COLUMN `planned_league_name` VARCHAR(512) NULL
COMMENT 'Geplante Spielklasse (freier Text, optional)'
AFTER `team_age_group`;