use of org.flywaydb.core.internal.database.base.Table in project flyway by flyway.
the class SchemaHistoryFactory method getSchemaHistory.
public static SchemaHistory getSchemaHistory(Configuration configuration, SqlScriptExecutorFactory sqlScriptExecutorFactory, SqlScriptFactory sqlScriptFactory, Database database, Schema schema, StatementInterceptor statementInterceptor) {
Table table = schema.getTable(configuration.getTable());
JdbcTableSchemaHistory jdbcTableSchemaHistory = new JdbcTableSchemaHistory(sqlScriptExecutorFactory, sqlScriptFactory, database, table);
return jdbcTableSchemaHistory;
}
Aggregations