All checks were successful
Deploy Development / deploy (push) Successful in 44s
Test Suite / pytest-backend (push) Successful in 37s
Test Suite / lint-backend (push) Successful in 0s
Test Suite / build-frontend (push) Successful in 12s
Test Suite / k6 /health Baseline (push) Successful in 33s
Test Suite / playwright-tests (push) Successful in 1m13s
- Incremented app version to 0.8.141 and updated build date to 2026-05-14. - Modified the planning module version to 0.12.0, improving template section handling with phase metadata. - Introduced new functions for normalizing and inserting training plan template sections, ensuring accurate phase representation during saves. - Updated frontend components to utilize new utility functions for managing training plan templates, enhancing user experience and data integrity.
9 lines
504 B
SQL
9 lines
504 B
SQL
-- Vorlagen: Phasen/Parallel-Streams wie im Einheiten-Editor (planLoc-Abbild)
|
|
ALTER TABLE training_plan_template_sections
|
|
ADD COLUMN IF NOT EXISTS phase_kind VARCHAR(20) NOT NULL DEFAULT 'whole_group',
|
|
ADD COLUMN IF NOT EXISTS phase_order_index INT NOT NULL DEFAULT 0,
|
|
ADD COLUMN IF NOT EXISTS parallel_stream_order_index INT NULL;
|
|
|
|
COMMENT ON COLUMN training_plan_template_sections.parallel_stream_order_index IS
|
|
'NULL = Ganzgruppen-Abschnitt; 0..n = Stream innerhalb paralleler Phase';
|