Ejemplo n.º 1
0
 /**
  * Creates a new instance of the metadata table support.
  *
  * @param dbSupport Database-specific functionality.
  * @param table The metadata table used by flyway.
  * @param migrationResolver For resolving available migrations.
  */
 public MetaDataTableImpl(DbSupport dbSupport, Table table, MigrationResolver migrationResolver) {
   this.jdbcTemplate = dbSupport.getJdbcTemplate();
   this.dbSupport = dbSupport;
   this.table = table;
   this.migrationResolver = migrationResolver;
 }