|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use SchemaVersion | |
|---|---|
| com.googlecode.flyway.core | The main Flyway package and for most users, the only one they'll ever need to know about. |
| com.googlecode.flyway.core.init | Private API. |
| com.googlecode.flyway.core.metadatatable | Private API. |
| com.googlecode.flyway.core.migration | SchemaVersion class, the rest is Private API. |
| com.googlecode.flyway.core.migration.init | Private API. |
| com.googlecode.flyway.core.migration.java | Support for Java migrations. |
| Uses of SchemaVersion in com.googlecode.flyway.core |
|---|
| Methods in com.googlecode.flyway.core that return SchemaVersion | |
|---|---|
SchemaVersion |
Flyway.getInitialVersion()
Retrieves the initial version to put in the database. |
SchemaVersion |
Flyway.getTarget()
Retrieves the target version up to which Flyway should run migrations. |
| Methods in com.googlecode.flyway.core with parameters of type SchemaVersion | |
|---|---|
void |
Flyway.init(SchemaVersion version,
java.lang.String description)
Deprecated. Use init(), setInitialVersion() and setInitialDescription() instead. |
void |
Flyway.setInitialVersion(SchemaVersion initialVersion)
The initial version to put in the database. |
void |
Flyway.setTarget(SchemaVersion target)
Sets the target version up to which Flyway should run migrations. |
| Uses of SchemaVersion in com.googlecode.flyway.core.init |
|---|
| Methods in com.googlecode.flyway.core.init with parameters of type SchemaVersion | |
|---|---|
void |
DbInit.init(SchemaVersion version,
java.lang.String description)
Initializes the metadata table with this version and this description. |
| Uses of SchemaVersion in com.googlecode.flyway.core.metadatatable |
|---|
| Methods in com.googlecode.flyway.core.metadatatable that return SchemaVersion | |
|---|---|
SchemaVersion |
MetaDataTable.getCurrentSchemaVersion()
|
SchemaVersion |
MetaDataTableRow.getVersion()
|
| Constructors in com.googlecode.flyway.core.metadatatable with parameters of type SchemaVersion | |
|---|---|
MetaDataTableRow(SchemaVersion schemaVersion,
java.lang.String description,
MigrationType migrationType,
java.lang.String script,
java.lang.Integer checksum,
java.util.Date installedOn,
java.lang.Integer executionTime,
MigrationState state)
Creates a new MetaDataTableRow. |
|
| Uses of SchemaVersion in com.googlecode.flyway.core.migration |
|---|
| Fields in com.googlecode.flyway.core.migration declared as SchemaVersion | |
|---|---|
static SchemaVersion |
SchemaVersion.EMPTY
Schema version for an empty schema. |
static SchemaVersion |
SchemaVersion.LATEST
Latest schema version. |
protected SchemaVersion |
Migration.schemaVersion
The target schema version of this migration. |
| Methods in com.googlecode.flyway.core.migration that return SchemaVersion | |
|---|---|
static SchemaVersion |
MigrationInfoHelper.extractSchemaVersion(java.lang.String migrationName)
Extracts the schema version from a migration name formatted as 1_2__Description. |
SchemaVersion |
Migration.getVersion()
|
| Methods in com.googlecode.flyway.core.migration with parameters of type SchemaVersion | |
|---|---|
int |
SchemaVersion.compareTo(SchemaVersion o)
|
| Constructors in com.googlecode.flyway.core.migration with parameters of type SchemaVersion | |
|---|---|
DbMigrator(org.springframework.transaction.support.TransactionTemplate transactionTemplate,
org.springframework.jdbc.core.JdbcTemplate jdbcTemplate,
DbSupport dbSupport,
MetaDataTable metaDataTable,
SchemaVersion target,
boolean ignoreFailedFutureMigration)
Creates a new database migrator. |
|
MigrationException(SchemaVersion version,
boolean rollback)
Creates a new MigrationException for this version. |
|
| Uses of SchemaVersion in com.googlecode.flyway.core.migration.init |
|---|
| Constructors in com.googlecode.flyway.core.migration.init with parameters of type SchemaVersion | |
|---|---|
InitMigration(SchemaVersion schemaVersion,
java.lang.String description)
Creates a new initial migration with this version. |
|
| Uses of SchemaVersion in com.googlecode.flyway.core.migration.java |
|---|
| Methods in com.googlecode.flyway.core.migration.java that return SchemaVersion | |
|---|---|
SchemaVersion |
JavaMigrationInfoProvider.getVersion()
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||