Conversation
Add a CLI command to mark migrations as applied without executing them. Supports three modes: - --name: skip a single migration by class name - --all: skip all pending migrations (full baseline) - --up-to: skip all up to and including a named migration Closes #320
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #327 +/- ##
============================================
+ Coverage 74.99% 75.05% +0.06%
- Complexity 3015 3034 +19
============================================
Files 97 97
Lines 9589 9650 +61
============================================
+ Hits 7191 7243 +52
- Misses 2398 2407 +9
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
…igrations Add support for running migrations against all registered connections in a single command invocation. Also validates that migration target connection names exist in the registry and warns about default names. Changes: - Add --all-connections flag to migrations:run - Add validateTargetConnections() for typo/misconfiguration detection - Fix JsonDriver::getDBConnection() using wrong variable for connection-name Closes #326
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.


Summary
Two migration CLI features:
migrations:skipcommand for baselining existing databases--all-connectionsflag onmigrations:runfor multi-database architecturesMotivation
Changes
migrations:skip (Closes #320)
SkipMigrationsCommandwith three modes:--name,--all,--up-toApp.php--all-connections (Closes #326)
--all-connectionsflag tomigrations:runvalidateTargetConnections()— warns about unknown target names and default connection namesJsonDriver::getDBConnection()where connection name was lostHow to Test / Verify
21 tests pass. Full CLI suite: 192 tests, 0 failures.
Breaking Changes and Migration Steps
None
Checklist
Related issues
Closes #320
Closes #326
Depends on: WebFiori/database#149