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

Packages that use Migration
com.googlecode.flyway.core   
com.googlecode.flyway.core.migration   
com.googlecode.flyway.core.migration.java   
com.googlecode.flyway.core.migration.sql   
com.googlecode.flyway.core.runtime   
 

Uses of Migration in com.googlecode.flyway.core
 

Methods in com.googlecode.flyway.core that return Migration
 Migration Flyway.status()
          Returns the status (current version) of the database.
 

Methods in com.googlecode.flyway.core that return types with arguments of type Migration
 java.util.List<Migration> Flyway.history()
          Returns the history (all applied migrations) of the database.
 

Uses of Migration in com.googlecode.flyway.core.migration
 

Subclasses of Migration in com.googlecode.flyway.core.migration
 class BaseMigration
          Base migration for migrations that use the standard Flyway version + description embedding in their name.
 

Methods in com.googlecode.flyway.core.migration that return types with arguments of type Migration
 java.util.Collection<Migration> MigrationResolver.resolvesMigrations()
          Resolves the available migrations.
 

Methods in com.googlecode.flyway.core.migration with parameters of type Migration
 int Migration.compareTo(Migration o)
           
 

Uses of Migration in com.googlecode.flyway.core.migration.java
 

Subclasses of Migration in com.googlecode.flyway.core.migration.java
 class BaseJavaMigration
          Base class for java migration classes whose name conforms to the Flyway standard.
 

Methods in com.googlecode.flyway.core.migration.java that return types with arguments of type Migration
 java.util.Collection<Migration> JavaMigrationResolver.resolvesMigrations()
           
 

Uses of Migration in com.googlecode.flyway.core.migration.sql
 

Subclasses of Migration in com.googlecode.flyway.core.migration.sql
 class SqlMigration
          Database migration based on a sql file.
 

Methods in com.googlecode.flyway.core.migration.sql that return types with arguments of type Migration
 java.util.Collection<Migration> SqlMigrationResolver.resolvesMigrations()
           
 

Uses of Migration in com.googlecode.flyway.core.runtime
 

Methods in com.googlecode.flyway.core.runtime that return Migration
 Migration MetaDataTable.latestAppliedMigration()
           
 

Methods in com.googlecode.flyway.core.runtime that return types with arguments of type Migration
 java.util.List<Migration> MetaDataTable.allAppliedMigrations()
           
 

Methods in com.googlecode.flyway.core.runtime with parameters of type Migration
 void MetaDataTable.finishMigration(Migration migration)
          Persists the result of this migration.
 



Copyright © 2010. All Rights Reserved.