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

Packages that use Migration
com.googlecode.flyway.core.metadatatable   
com.googlecode.flyway.core.migration   
com.googlecode.flyway.core.migration.init   
com.googlecode.flyway.core.migration.java   
com.googlecode.flyway.core.migration.sql   
com.googlecode.flyway.core.validation   
 

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
 

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.resolveMigrations()
          Resolves the available migrations.
 

Methods in com.googlecode.flyway.core.migration with parameters of type Migration
 MetaDataTableRow DbMigrator.applyMigration(Migration migration, org.springframework.transaction.support.TransactionTemplate transactionTemplate, org.springframework.jdbc.core.JdbcTemplate jdbcTemplate, DbSupport dbSupport)
          Applies this migration to the database.
 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 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.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.Collection<Migration> SqlMigrationResolver.resolveMigrations()
           
 

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

Constructor parameters in com.googlecode.flyway.core.validation with type arguments of type Migration
DbValidator(ValidationMode validationMode, MetaDataTable metaDataTable, java.util.List<Migration> migrations)
          Creates a new database validator.
 



Copyright © 2010. All Rights Reserved.