There was an error while loading. Please reload this page.
2 parents 470acac + f860efc commit d464b0cCopy full SHA for d464b0c
src/DbUp/Engine/UpgradeEngine.cs
@@ -95,7 +95,11 @@ public DatabaseUpgradeResult PerformUpgrade()
95
}
96
97
98
- private List<SqlScript> GetScriptsToExecute()
+ /// <summary>
99
+ /// Returns a list of scripts that will be executed when the upgrade is performed
100
+ /// </summary>
101
+ /// <returns>The scripts to be executed</returns>
102
+ public List<SqlScript> GetScriptsToExecute()
103
{
104
var allScripts = configuration.ScriptProviders.SelectMany(scriptProvider => scriptProvider.GetScripts(configuration.ConnectionFactory));
105
var executedScripts = configuration.Journal.GetExecutedScripts();
0 commit comments