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

Packages that use Migration
com.googlecode.flyway.core.metadatatable Private API: No compatibility guarantees provided. 
com.googlecode.flyway.core.migration SchemaVersion class, the rest is Private API: No compatibility guarantees provided. 
com.googlecode.flyway.core.migration.init Private API: No compatibility guarantees provided. 
com.googlecode.flyway.core.migration.java Private API: No compatibility guarantees provided. 
com.googlecode.flyway.core.migration.jdbc Private API: No compatibility guarantees provided. 
com.googlecode.flyway.core.migration.spring Private API: No compatibility guarantees provided. 
com.googlecode.flyway.core.migration.sql Private API: No compatibility guarantees provided. 
com.googlecode.flyway.core.validation Private API: No compatibility guarantees provided. 
 

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

Constructors in com.googlecode.flyway.core.metadatatable with parameters of type Migration
MetaDataTableRow(Migration migration)
          Initializes a new metadatatable row with this migration.
 

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

Methods in com.googlecode.flyway.core.migration that return types with arguments of type Migration
 java.util.List<Migration> MigrationResolver.resolveMigrations()
          Resolves the available migrations.
 java.util.List<Migration> CompositeMigrationResolver.resolveMigrations()
          Finds all available migrations using all migration resolvers (sql, java, ...).
 

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

Method parameters in com.googlecode.flyway.core.migration with type arguments of type Migration
 int DbMigrator.migrate(java.util.List<Migration> migrations)
          Starts the actual migration.
 

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

Subclasses of Migration in com.googlecode.flyway.core.migration.init
 class InitMigration
          Special type of migration used to mark the initial state of the database from which Flyway can migrate to subsequent versions.
 

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

Subclasses of Migration in com.googlecode.flyway.core.migration.java
 class JavaMigrationExecutor
          Adapter for executing migrations implementing JavaMigration.
 

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

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

Subclasses of Migration in com.googlecode.flyway.core.migration.jdbc
 class JdbcMigrationExecutor
          Adapter for executing migrations implementing JdbcMigration.
 

Methods in com.googlecode.flyway.core.migration.jdbc that return types with arguments of type Migration
 java.util.List<Migration> JdbcMigrationResolver.resolveMigrations()
           
 

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

Subclasses of Migration in com.googlecode.flyway.core.migration.spring
 class SpringJdbcMigrationExecutor
          Adapter for executing migrations implementing SpringJdbcMigration.
 

Methods in com.googlecode.flyway.core.migration.spring that return types with arguments of type Migration
 java.util.List<Migration> SpringJdbcMigrationResolver.resolveMigrations()
           
 

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.List<Migration> SqlMigrationResolver.resolveMigrations()
           
 

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

Method parameters in com.googlecode.flyway.core.validation with type arguments of type Migration
 java.lang.String DbValidator.validate(java.util.List<Migration> resolvedMigrations)
          Validate the checksum of all existing sql migration in the metadata table with the checksum of the sql migrations in the classpath
 



Copyright © 2012. All Rights Reserved.