- getChecksum() - Method in interface com.googlecode.flyway.core.api.migration.MigrationChecksumProvider
-
Computes the checksum of the migration.
- getChecksum() - Method in interface com.googlecode.flyway.core.api.MigrationInfo
-
- getDataSource() - Method in class com.googlecode.flyway.core.Flyway
-
Retrieves the dataSource to use to access the database.
- getDescription() - Method in interface com.googlecode.flyway.core.api.migration.MigrationInfoProvider
-
Returns the description for the migration history.
- getDescription() - Method in interface com.googlecode.flyway.core.api.MigrationInfo
-
- getDisplayName() - Method in enum com.googlecode.flyway.core.api.MigrationState
-
- getEncoding() - Method in class com.googlecode.flyway.core.Flyway
-
Retrieves the encoding of Sql migrations.
- getExecutionTime() - Method in interface com.googlecode.flyway.core.api.MigrationInfo
-
- getInitDescription() - Method in class com.googlecode.flyway.core.Flyway
-
Retrieves the description to tag an existing schema with when executing init.
- getInitialDescription() - Method in class com.googlecode.flyway.core.Flyway
-
Deprecated.
Use getInitDescription() instead. Will be removed in Flyway 3.0.
- getInitialVersion() - Method in class com.googlecode.flyway.core.Flyway
-
Deprecated.
Use getInitVersion() instead. Will be removed in Flyway 3.0.
- getInitVersion() - Method in class com.googlecode.flyway.core.Flyway
-
Retrieves the version to tag an existing schema with when executing init.
- getInstalledOn() - Method in interface com.googlecode.flyway.core.api.MigrationInfo
-
- getLocations() - Method in class com.googlecode.flyway.core.Flyway
-
Retrieves locations on the classpath to scan recursively for migrations.
- getPlaceholderPrefix() - Method in class com.googlecode.flyway.core.Flyway
-
Retrieves the prefix of every placeholder.
- getPlaceholders() - Method in class com.googlecode.flyway.core.Flyway
-
Retrieves the map of <placeholder, replacementValue> to apply to sql migration scripts.
- getPlaceholderSuffix() - Method in class com.googlecode.flyway.core.Flyway
-
Retrieves the suffix of every placeholder.
- getSchemas() - Method in class com.googlecode.flyway.core.Flyway
-
Retrieves the schemas managed by Flyway.
- getScript() - Method in interface com.googlecode.flyway.core.api.MigrationInfo
-
- getSqlMigrationPrefix() - Method in class com.googlecode.flyway.core.Flyway
-
Retrieves the file name prefix for sql migrations.
- getSqlMigrationSuffix() - Method in class com.googlecode.flyway.core.Flyway
-
Retrieves the file name suffix for sql migrations.
- getState() - Method in interface com.googlecode.flyway.core.api.MigrationInfo
-
- getTable() - Method in class com.googlecode.flyway.core.Flyway
-
Retrieves the name of the schema metadata table that will be used by Flyway.
- getTarget() - Method in class com.googlecode.flyway.core.Flyway
-
Retrieves the target version up to which Flyway should run migrations.
- getType() - Method in interface com.googlecode.flyway.core.api.MigrationInfo
-
- getValidationErrorMode() - Method in class com.googlecode.flyway.core.Flyway
-
Deprecated.
Use isCleanOnValidationError instead. Will be removed in Flyway 3.0.
- getValidationMode() - Method in class com.googlecode.flyway.core.Flyway
-
Deprecated.
Use isValidateOnMigrate instead. Will be removed in Flyway 3.0.
- getVersion() - Method in interface com.googlecode.flyway.core.api.migration.MigrationInfoProvider
-
Returns the version after the migration is complete.
- getVersion() - Method in interface com.googlecode.flyway.core.api.MigrationInfo
-
- setCleanOnValidationError(boolean) - Method in class com.googlecode.flyway.core.Flyway
-
Whether to automatically call clean or not when a validation error occurs.
- setDataSource(DataSource) - Method in class com.googlecode.flyway.core.Flyway
-
Sets the datasource to use.
- setDataSource(String, String, String) - Method in class com.googlecode.flyway.core.Flyway
-
Sets the datasource to use.
- setDisableInitCheck(boolean) - Method in class com.googlecode.flyway.core.Flyway
-
Deprecated.
Use initOnMigrate instead. Will be removed in Flyway 3.0.
- setEncoding(String) - Method in class com.googlecode.flyway.core.Flyway
-
Sets the encoding of Sql migrations.
- setIgnoreFailedFutureMigration(boolean) - Method in class com.googlecode.flyway.core.Flyway
-
Ignores failed future migrations when reading the metadata table.
- setInitDescription(String) - Method in class com.googlecode.flyway.core.Flyway
-
Sets the description to tag an existing schema with when executing init.
- setInitialDescription(String) - Method in class com.googlecode.flyway.core.Flyway
-
Deprecated.
Use setInitDescription(String) instead. Will be removed in Flyway 3.0.
- setInitialVersion(SchemaVersion) - Method in class com.googlecode.flyway.core.Flyway
-
Deprecated.
Use setInitVersion(MigrationVersion) instead. Will be removed in Flyway 3.0.
- setInitialVersion(MigrationVersion) - Method in class com.googlecode.flyway.core.Flyway
-
Deprecated.
Use setInitVersion(MigrationVersion) instead. Will be removed in Flyway 3.0.
- setInitialVersion(String) - Method in class com.googlecode.flyway.core.Flyway
-
Deprecated.
Use setInitVersion(String) instead. Will be removed in Flyway 3.0.
- setInitOnMigrate(boolean) - Method in class com.googlecode.flyway.core.Flyway
-
Whether to automatically call init when migrate is executed against a non-empty schema with no metadata table.
- setInitVersion(MigrationVersion) - Method in class com.googlecode.flyway.core.Flyway
-
Sets the version to tag an existing schema with when executing init.
- setInitVersion(String) - Method in class com.googlecode.flyway.core.Flyway
-
Sets the version to tag an existing schema with when executing init.
- setLocations(String...) - Method in class com.googlecode.flyway.core.Flyway
-
Sets the locations on the classpath to scan recursively for migrations.
- setOutOfOrder(boolean) - Method in class com.googlecode.flyway.core.Flyway
-
Allows migrations to be run "out of order".
- setPlaceholderPrefix(String) - Method in class com.googlecode.flyway.core.Flyway
-
Sets the prefix of every placeholder.
- setPlaceholders(Map<String, String>) - Method in class com.googlecode.flyway.core.Flyway
-
Sets the placeholders to replace in sql migration scripts.
- setPlaceholderSuffix(String) - Method in class com.googlecode.flyway.core.Flyway
-
Sets the suffix of every placeholder.
- setSchemas(String...) - Method in class com.googlecode.flyway.core.Flyway
-
Sets the schemas managed by Flyway.
- setSqlMigrationPrefix(String) - Method in class com.googlecode.flyway.core.Flyway
-
Sets the file name prefix for sql migrations.
- setSqlMigrationSuffix(String) - Method in class com.googlecode.flyway.core.Flyway
-
Sets the file name suffix for sql migrations.
- setTable(String) - Method in class com.googlecode.flyway.core.Flyway
-
Sets the name of the schema metadata table that will be used by Flyway.
- setTarget(SchemaVersion) - Method in class com.googlecode.flyway.core.Flyway
-
Deprecated.
Use setTarget(MigrationVersion) instead. Will be removed in Flyway 3.0.
- setTarget(MigrationVersion) - Method in class com.googlecode.flyway.core.Flyway
-
Sets the target version up to which Flyway should run migrations.
- setTarget(String) - Method in class com.googlecode.flyway.core.Flyway
-
Sets the target version up to which Flyway should run migrations.
- setValidateOnMigrate(boolean) - Method in class com.googlecode.flyway.core.Flyway
-
Whether to automatically call validate or not when running migrate.
- setValidationErrorMode(ValidationErrorMode) - Method in class com.googlecode.flyway.core.Flyway
-
Deprecated.
Use setCleanOnValidationError instead. Will be removed in Flyway 3.0.
- setValidationMode(ValidationMode) - Method in class com.googlecode.flyway.core.Flyway
-
Deprecated.
Use setValidateOnMigrate instead. Will be removed in Flyway 3.0.
- SpringJdbcMigration - Interface in com.googlecode.flyway.core.api.migration.spring
-
Interface to be implemented by Spring Jdbc Java Migrations.
- status() - Method in class com.googlecode.flyway.core.Flyway
-
Deprecated.
Use flyway.info().current() instead. Will be removed in Flyway 3.0.