protected override UpgradeEngineBuilder For(SupportedDatabases supportedDatabases, string connectionString)
 {
     return(supportedDatabases.PostgresqlDatabase(connectionString));
 }
 public UpgradeEngineBuilder DeployTo(SupportedDatabases supported, MigrationConfig config)
 {
     return(supported
            .PostgresqlDatabase(config.ConnectionString)
            .JournalToPostgresqlTable(DefaultSchema, config.JournalingTable));
 }