fix: remove incompatible schema_migrations tracking from migrations 012-013
Some checks failed
Deploy Development / deploy (push) Successful in 35s
Test Suite / lint-backend (push) Successful in 0s
Test Suite / build-frontend (push) Successful in 5s
Test Suite / playwright-tests (push) Failing after 1m55s

The db_init.py system uses (filename, applied_at) schema, not (version, description).
Removing manual INSERT statements - db_init.py handles tracking automatically.
This commit is contained in:
Lars 2026-04-23 16:17:35 +02:00
parent fe5d29e40e
commit 0be9fd840c
2 changed files with 0 additions and 16 deletions

View File

@ -107,14 +107,6 @@ BEGIN
END $seed$;
-- ============================================================================
-- MIGRATION TRACKING
-- ============================================================================
INSERT INTO schema_migrations (version, description)
VALUES (12, 'exercise_training_characters + trainer_contexts')
ON CONFLICT (version) DO NOTHING;
RAISE NOTICE 'Migration 012 completed successfully';
END $$;

View File

@ -128,14 +128,6 @@ BEGIN
END $constraint$;
-- ============================================================================
-- MIGRATION TRACKING
-- ============================================================================
INSERT INTO schema_migrations (version, description)
VALUES (13, 'training_types focus_area hierarchy')
ON CONFLICT (version) DO NOTHING;
RAISE NOTICE 'Migration 013 completed successfully';
END $$;