1- [ assembly: System . CLSCompliantAttribute ( false ) ]
2- [ assembly: System . Runtime . InteropServices . ComVisibleAttribute ( false ) ]
3- [ assembly: System . Runtime . InteropServices . GuidAttribute ( "5ddc04cc-0bd3-421e-9ae4-9fd0e4f4ef04" ) ]
4-
1+ [ assembly: System . CLSCompliant ( false ) ]
2+ [ assembly: System . Reflection . AssemblyMetadata ( "RepositoryUrl" , "https://github.com/DbUp/dbup-postgresql.git" ) ]
3+ [ assembly: System . Runtime . InteropServices . ComVisible ( false ) ]
4+ [ assembly: System . Runtime . InteropServices . Guid ( "5ddc04cc-0bd3-421e-9ae4-9fd0e4f4ef04" ) ]
5+ [ assembly: System . Runtime . Versioning . TargetFramework ( ".NETCoreApp,Version=v8.0" , FrameworkDisplayName = ".NET 8.0" ) ]
56public static class PostgresqlExtensions
67{
78 public static DbUp . Builder . UpgradeEngineBuilder JournalToPostgresqlTable ( this DbUp . Builder . UpgradeEngineBuilder builder , string schema , string table ) { }
89 public static DbUp . Builder . UpgradeEngineBuilder PostgresqlDatabase ( DbUp . Engine . Transactions . IConnectionManager connectionManager ) { }
9- public static DbUp . Builder . UpgradeEngineBuilder PostgresqlDatabase ( this DbUp . Builder . SupportedDatabases supported , string connectionString ) { }
1010 public static DbUp . Builder . UpgradeEngineBuilder PostgresqlDatabase ( this DbUp . Builder . SupportedDatabases supported , DbUp . Engine . Transactions . IConnectionManager connectionManager ) { }
11+ public static DbUp . Builder . UpgradeEngineBuilder PostgresqlDatabase ( this DbUp . Builder . SupportedDatabases supported , string connectionString ) { }
1112 public static DbUp . Builder . UpgradeEngineBuilder PostgresqlDatabase ( DbUp . Engine . Transactions . IConnectionManager connectionManager , string schema ) { }
12- public static DbUp . Builder . UpgradeEngineBuilder PostgresqlDatabase ( this DbUp . Builder . SupportedDatabases supported , string connectionString , string schema ) { }
13- public static DbUp . Builder . UpgradeEngineBuilder PostgresqlDatabase ( this DbUp . Builder . SupportedDatabases supported , string connectionString , string schema , System . Security . Cryptography . X509Certificates . X509Certificate2 certificate ) { }
14- public static DbUp . Builder . UpgradeEngineBuilder PostgresqlDatabase ( this DbUp . Builder . SupportedDatabases supported , string connectionString , string schema , DbUp . Postgresql . PostgresqlConnectionOptions connectionOptions ) { }
15- public static void PostgresqlDatabase ( this DbUp . SupportedDatabasesForEnsureDatabase supported , string connectionString ) { }
1613 public static void PostgresqlDatabase ( this DbUp . SupportedDatabasesForDropDatabase supported , string connectionString ) { }
17- public static void PostgresqlDatabase ( this DbUp . SupportedDatabasesForEnsureDatabase supported , string connectionString , System . Security . Cryptography . X509Certificates . X509Certificate2 certificate ) { }
18- public static void PostgresqlDatabase ( this DbUp . SupportedDatabasesForEnsureDatabase supported , string connectionString , DbUp . Postgresql . PostgresqlConnectionOptions connectionOptions ) { }
19- public static void PostgresqlDatabase ( this DbUp . SupportedDatabasesForEnsureDatabase supported , string connectionString , DbUp . Engine . Output . IUpgradeLog logger ) { }
20- public static void PostgresqlDatabase ( this DbUp . SupportedDatabasesForDropDatabase supported , string connectionString , System . Security . Cryptography . X509Certificates . X509Certificate2 certificate ) { }
21- public static void PostgresqlDatabase ( this DbUp . SupportedDatabasesForDropDatabase supported , string connectionString , DbUp . Postgresql . PostgresqlConnectionOptions connectionOptions ) { }
14+ public static void PostgresqlDatabase ( this DbUp . SupportedDatabasesForEnsureDatabase supported , string connectionString ) { }
15+ public static DbUp . Builder . UpgradeEngineBuilder PostgresqlDatabase ( this DbUp . Builder . SupportedDatabases supported , string connectionString , string schema ) { }
2216 public static void PostgresqlDatabase ( this DbUp . SupportedDatabasesForDropDatabase supported , string connectionString , DbUp . Engine . Output . IUpgradeLog logger ) { }
23- public static void PostgresqlDatabase ( this DbUp . SupportedDatabasesForEnsureDatabase supported , string connectionString , DbUp . Engine . Output . IUpgradeLog logger , System . Security . Cryptography . X509Certificates . X509Certificate2 certificate ) { }
24- public static void PostgresqlDatabase ( this DbUp . SupportedDatabasesForEnsureDatabase supported , string connectionString , DbUp . Engine . Output . IUpgradeLog logger , DbUp . Postgresql . PostgresqlConnectionOptions connectionOptions ) { }
25- public static void PostgresqlDatabase ( this DbUp . SupportedDatabasesForDropDatabase supported , string connectionString , DbUp . Engine . Output . IUpgradeLog logger , System . Security . Cryptography . X509Certificates . X509Certificate2 certificate ) { }
17+ public static void PostgresqlDatabase ( this DbUp . SupportedDatabasesForDropDatabase supported , string connectionString , DbUp . Postgresql . PostgresqlConnectionOptions connectionOptions ) { }
18+ public static void PostgresqlDatabase ( this DbUp . SupportedDatabasesForDropDatabase supported , string connectionString , System . Security . Cryptography . X509Certificates . X509Certificate2 certificate ) { }
19+ public static void PostgresqlDatabase ( this DbUp . SupportedDatabasesForEnsureDatabase supported , string connectionString , DbUp . Engine . Output . IUpgradeLog logger ) { }
20+ public static void PostgresqlDatabase ( this DbUp . SupportedDatabasesForEnsureDatabase supported , string connectionString , DbUp . Postgresql . PostgresqlConnectionOptions connectionOptions ) { }
21+ public static void PostgresqlDatabase ( this DbUp . SupportedDatabasesForEnsureDatabase supported , string connectionString , System . Security . Cryptography . X509Certificates . X509Certificate2 certificate ) { }
22+ public static DbUp . Builder . UpgradeEngineBuilder PostgresqlDatabase ( this DbUp . Builder . SupportedDatabases supported , string connectionString , string schema , DbUp . Postgresql . PostgresqlConnectionOptions connectionOptions ) { }
23+ public static DbUp . Builder . UpgradeEngineBuilder PostgresqlDatabase ( this DbUp . Builder . SupportedDatabases supported , string connectionString , string schema , System . Security . Cryptography . X509Certificates . X509Certificate2 certificate ) { }
2624 public static void PostgresqlDatabase ( this DbUp . SupportedDatabasesForDropDatabase supported , string connectionString , DbUp . Engine . Output . IUpgradeLog logger , DbUp . Postgresql . PostgresqlConnectionOptions connectionOptions ) { }
25+ public static void PostgresqlDatabase ( this DbUp . SupportedDatabasesForDropDatabase supported , string connectionString , DbUp . Engine . Output . IUpgradeLog logger , System . Security . Cryptography . X509Certificates . X509Certificate2 certificate ) { }
26+ public static void PostgresqlDatabase ( this DbUp . SupportedDatabasesForEnsureDatabase supported , string connectionString , DbUp . Engine . Output . IUpgradeLog logger , DbUp . Postgresql . PostgresqlConnectionOptions connectionOptions ) { }
27+ public static void PostgresqlDatabase ( this DbUp . SupportedDatabasesForEnsureDatabase supported , string connectionString , DbUp . Engine . Output . IUpgradeLog logger , System . Security . Cryptography . X509Certificates . X509Certificate2 certificate ) { }
2728}
2829namespace DbUp . Postgresql
2930{
30- public class PostgresqlConnectionManager : DbUp . Engine . Transactions . DatabaseConnectionManager , DbUp . Engine . Transactions . IConnectionManager
31+ public class PostgresqlConnectionManager : DbUp . Engine . Transactions . DatabaseConnectionManager
3132 {
32- public PostgresqlConnectionManager ( string connectionString ) { }
3333 public PostgresqlConnectionManager ( Npgsql . NpgsqlDataSource datasource ) { }
34- public PostgresqlConnectionManager ( string connectionString , System . Security . Cryptography . X509Certificates . X509Certificate2 certificate ) { }
34+ public PostgresqlConnectionManager ( string connectionString ) { }
3535 public PostgresqlConnectionManager ( string connectionString , DbUp . Postgresql . PostgresqlConnectionOptions connectionOptions ) { }
36+ public PostgresqlConnectionManager ( string connectionString , System . Security . Cryptography . X509Certificates . X509Certificate2 certificate ) { }
3637 public bool StandardConformingStrings { get ; set ; }
3738 public override System . Collections . Generic . IEnumerable < string > SplitScriptIntoCommands ( string scriptContents ) { }
3839 }
@@ -43,7 +44,7 @@ public PostgresqlConnectionOptions() { }
4344 public string MasterDatabaseName { get ; set ; }
4445 public System . Net . Security . RemoteCertificateValidationCallback UserCertificateValidationCallback { get ; set ; }
4546 }
46- public class PostgresqlObjectParser : DbUp . Support . SqlObjectParser , DbUp . Engine . ISqlObjectParser
47+ public class PostgresqlObjectParser : DbUp . Support . SqlObjectParser
4748 {
4849 public PostgresqlObjectParser ( ) { }
4950 }
@@ -52,18 +53,18 @@ public class PostgresqlPreprocessor : DbUp.Engine.IScriptPreprocessor
5253 public PostgresqlPreprocessor ( ) { }
5354 public string Process ( string contents ) { }
5455 }
55- public class PostgresqlScriptExecutor : DbUp . Support . ScriptExecutor , DbUp . Engine . IScriptExecutor
56+ public class PostgresqlScriptExecutor : DbUp . Support . ScriptExecutor
5657 {
5758 public PostgresqlScriptExecutor ( System . Func < DbUp . Engine . Transactions . IConnectionManager > connectionManagerFactory , System . Func < DbUp . Engine . Output . IUpgradeLog > log , string schema , System . Func < bool > variablesEnabled , System . Collections . Generic . IEnumerable < DbUp . Engine . IScriptPreprocessor > scriptPreprocessors , System . Func < DbUp . Engine . IJournal > journalFactory ) { }
5859 protected override void ExecuteCommandsWithinExceptionHandler ( int index , DbUp . Engine . SqlScript script , System . Action executeCommand ) { }
5960 protected override string GetVerifySchemaSql ( string schema ) { }
6061 }
61- public class PostgresqlTableJournal : DbUp . Support . TableJournal , DbUp . Engine . IJournal
62+ public class PostgresqlTableJournal : DbUp . Support . TableJournal
6263 {
6364 public PostgresqlTableJournal ( System . Func < DbUp . Engine . Transactions . IConnectionManager > connectionManager , System . Func < DbUp . Engine . Output . IUpgradeLog > logger , string schema , string tableName ) { }
6465 protected override string CreateSchemaTableSql ( string quotedPrimaryKeyName ) { }
6566 protected override string GetInsertJournalEntrySql ( string scriptName , string applied ) { }
6667 protected override System . Data . IDbCommand GetInsertScriptCommand ( System . Func < System . Data . IDbCommand > dbCommandFactory , DbUp . Engine . SqlScript script ) { }
6768 protected override string GetJournalEntriesSql ( ) { }
6869 }
69- }
70+ }
0 commit comments