Uses of Class
com.googlecode.flyway.core.migration.SchemaVersion

Packages that use SchemaVersion
com.googlecode.flyway.core   
com.googlecode.flyway.core.init   
com.googlecode.flyway.core.metadatatable   
com.googlecode.flyway.core.migration   
com.googlecode.flyway.core.migration.init   
com.googlecode.flyway.core.migration.java   
 

Uses of SchemaVersion in com.googlecode.flyway.core
 

Methods in com.googlecode.flyway.core with parameters of type SchemaVersion
 void Flyway.init(SchemaVersion initialVersion, java.lang.String description)
          Creates and initializes the Flyway metadata table.
 void Flyway.setTarget(SchemaVersion target)
           
 

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()
           
 



Copyright © 2010. All Rights Reserved.