Package io.ebean.migration
Interface JdbcMigration
-
public interface JdbcMigration
Interface to be implemented by Jdbc Java Migrations. By default the migration version and description will be extracted from the class name. The checksum of this migration (for validation) will also be null, unless the migration also implements the MigrationChecksumProvider, in which case it can be returned programmatically.When the JdbcMigration implements ConfigurationAware, the master
MigrationConfigis automatically injected upon creation, which is useful for getting placeholder and schema information.- Author:
- Roland Praml, FOCONIS AG
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidmigrate(Connection connection)Execute the migration using the connection.
-
-
-
Method Detail
-
migrate
void migrate(Connection connection)
Execute the migration using the connection.
-
-