Is it possible to add two missing checkState methods ? Like "run", it would be useful to have
checkState ()
checkState (Connection)
checkState (DataSource)
Actual behavior
final MigrationRunner migrationRunner = new MigrationRunner(migrationConfig)
final List<LocalMigrationResource> state = migrationRunner.checkState( // Not compile
ebeanServer
.getPluginApi
.getDataSource
)
if (!state.isEmpty()) {
migrationRunner.run(
ebeanServer
.getPluginApi
.getDataSource
)
}
Is it possible to add two missing checkState methods ? Like "run", it would be useful to have
Actual behavior