Created
January 14, 2026 20:44
-
-
Save ssougnez/38224f485696edc3a8a73f3428f967f8 to your computer and use it in GitHub Desktop.
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
| public class AppMigrationEngine: BaseMigrationEngine | |
| { | |
| private readonly IConfiguration _config; | |
| public AppMigrationEngine(IConfiguration config) | |
| { | |
| _config = config; | |
| } | |
| public override bool ShouldRun => _config.GetValue < bool > ("Migrations:IsMaster"); | |
| // … rest of the implementation | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment