1- [ assembly: System . CLSCompliant ( false ) ]
1+ [ assembly: System . CLSCompliant ( false ) ]
22[ assembly: System . Reflection . AssemblyMetadata ( "RepositoryUrl" , "https://github.com/DbUp/dbup-sqlserver.git" ) ]
33[ assembly: System . Runtime . InteropServices . ComVisible ( false ) ]
44[ assembly: System . Runtime . InteropServices . Guid ( "8190b40b-ac5b-414f-8a00-9b6a2c12b010" ) ]
@@ -11,10 +11,14 @@ public static class SqlServerExtensions
1111{
1212 public static DbUp . Builder . UpgradeEngineBuilder JournalToSqlTable ( this DbUp . Builder . UpgradeEngineBuilder builder , string schema , string table ) { }
1313 public static DbUp . Builder . UpgradeEngineBuilder SqlDatabase ( this DbUp . Builder . SupportedDatabases supported , string connectionString ) { }
14+ public static DbUp . Builder . UpgradeEngineBuilder SqlDatabase ( this DbUp . Builder . SupportedDatabases supported , string connectionString , string schema ) { }
15+ public static DbUp . Builder . UpgradeEngineBuilder SqlDatabase ( this DbUp . Builder . SupportedDatabases supported , Microsoft . Data . SqlClient . SqlConnection connection ) { }
16+ public static DbUp . Builder . UpgradeEngineBuilder SqlDatabase ( this DbUp . Builder . SupportedDatabases supported , Microsoft . Data . SqlClient . SqlConnection connection , string schema ) { }
17+ public static DbUp . Builder . UpgradeEngineBuilder SqlDatabase ( this DbUp . Builder . SupportedDatabases supported , DbUp . Engine . Transactions . IConnectionManager connectionManager , string schema = null ) { }
18+ public static void SqlDatabase ( this DbUp . SupportedDatabasesForEnsureDatabase supported , string connectionString ) { }
1419 public static void SqlDatabase ( this DbUp . SupportedDatabasesForDropDatabase supported , string connectionString ) { }
1520 public static bool SqlDatabase ( this DbUp . SupportedDatabasesForEnsureDatabase supported , string connectionString ) { }
1621 public static DbUp . Builder . UpgradeEngineBuilder SqlDatabase ( this DbUp . Builder . SupportedDatabases supported , DbUp . Engine . Transactions . IConnectionManager connectionManager , string schema = null ) { }
17- public static DbUp . Builder . UpgradeEngineBuilder SqlDatabase ( this DbUp . Builder . SupportedDatabases supported , string connectionString , string schema ) { }
1822 public static void SqlDatabase ( this DbUp . SupportedDatabasesForDropDatabase supported , string connectionString , int commandTimeout ) { }
1923 public static bool SqlDatabase ( this DbUp . SupportedDatabasesForEnsureDatabase supported , string connectionString , DbUp . SqlServer . AzureDatabaseEdition azureDatabaseEdition ) { }
2024 public static bool SqlDatabase ( this DbUp . SupportedDatabasesForEnsureDatabase supported , string connectionString , int commandTimeout ) { }
@@ -47,6 +51,7 @@ public override System.Collections.Generic.IEnumerable<string> SplitScriptIntoCo
4751 public class SqlConnectionManager : DbUp . Engine . Transactions . DatabaseConnectionManager
4852 {
4953 public SqlConnectionManager ( string connectionString ) { }
54+ public SqlConnectionManager ( SqlConnection connection ) { }
5055 public override System . Collections . Generic . IEnumerable < string > SplitScriptIntoCommands ( string scriptContents ) { }
5156 }
5257 public class SqlScriptExecutor : DbUp . Support . ScriptExecutor
0 commit comments