Exemple #1
0
 public Task <FlywayOutputResult> MigrateAsync(FlywayMigrateOptionGroup options = null)
 {
     return(ExecAsync("migrate", options ?? Configuration));
 }
Exemple #2
0
 /// <summary>
 /// Migrates the schema to the latest version. Flyway will create the schema history table automatically if it doesn’t exist.
 /// </summary>
 public FlywayOutputResult Migrate(FlywayMigrateOptionGroup options = null)
 {
     return(Exec("migrate", options ?? Configuration));
 }