A B C D E F G H I J L M O P R S T U V W 
All Classes All Packages

A

ABOVE_TARGET - org.flywaydb.core.api.MigrationState
This migration has not been applied yet, and won't be applied because target is set to a lower version.
AFTER_BASELINE - org.flywaydb.core.api.callback.Event
Fired after baseline has succeeded.
AFTER_BASELINE_ERROR - org.flywaydb.core.api.callback.Event
Fired after baseline has failed.
AFTER_CLEAN - org.flywaydb.core.api.callback.Event
Fired after clean has succeeded.
AFTER_CLEAN_ERROR - org.flywaydb.core.api.callback.Event
Fired after clean has failed.
AFTER_EACH_MIGRATE - org.flywaydb.core.api.callback.Event
Fired after each individual migration that succeeded.
AFTER_EACH_MIGRATE_ERROR - org.flywaydb.core.api.callback.Event
Fired after each individual migration that failed.
AFTER_EACH_MIGRATE_STATEMENT - org.flywaydb.core.api.callback.Event
Fired after each individual statement in a migration that succeeded.
AFTER_EACH_MIGRATE_STATEMENT_ERROR - org.flywaydb.core.api.callback.Event
Fired after each individual statement in a migration that failed.
AFTER_EACH_UNDO - org.flywaydb.core.api.callback.Event
Fired after each individual undo that succeeded.
AFTER_EACH_UNDO_ERROR - org.flywaydb.core.api.callback.Event
Fired after each individual undo that failed.
AFTER_EACH_UNDO_STATEMENT - org.flywaydb.core.api.callback.Event
Fired after each individual statement in an undo migration that succeeded.
AFTER_EACH_UNDO_STATEMENT_ERROR - org.flywaydb.core.api.callback.Event
Fired after each individual statement in an undo migration that failed.
AFTER_INFO - org.flywaydb.core.api.callback.Event
Fired after info has succeeded.
AFTER_INFO_ERROR - org.flywaydb.core.api.callback.Event
Fired after info has failed.
AFTER_MIGRATE - org.flywaydb.core.api.callback.Event
Fired after migrate has succeeded.
AFTER_MIGRATE_ERROR - org.flywaydb.core.api.callback.Event
Fired after migrate has failed.
AFTER_REPAIR - org.flywaydb.core.api.callback.Event
Fired after repair has succeeded.
AFTER_REPAIR_ERROR - org.flywaydb.core.api.callback.Event
Fired after repair has failed.
AFTER_UNDO - org.flywaydb.core.api.callback.Event
Fired after undo has succeeded.
AFTER_UNDO_ERROR - org.flywaydb.core.api.callback.Event
Fired after undo has failed.
AFTER_VALIDATE - org.flywaydb.core.api.callback.Event
Fired after validate has succeeded.
AFTER_VALIDATE_ERROR - org.flywaydb.core.api.callback.Event
Fired after validate has failed.
all() - Method in interface org.flywaydb.core.api.MigrationInfoService
Retrieves the full set of infos about applied, current and future migrations.
applied() - Method in interface org.flywaydb.core.api.MigrationInfoService
Retrieves the full set of infos about the migrations applied to the DB.
AVAILABLE - org.flywaydb.core.api.MigrationState
This undo migration is ready to be applied if desired.

B

BaseCallback - Class in org.flywaydb.core.api.callback
Base implementation of Callback from which one can inherit.
BaseCallback() - Constructor for class org.flywaydb.core.api.callback.BaseCallback
 
BaseJavaMigration - Class in org.flywaydb.core.api.migration
This is the recommended class to extend for implementing Java-based Migrations.
BaseJavaMigration() - Constructor for class org.flywaydb.core.api.migration.BaseJavaMigration
Creates a new instance of a Java-based migration following Flyway's default naming convention.
baseline() - Method in class org.flywaydb.core.Flyway
Baselines an existing database, excluding all migrations up to and including baselineVersion.
BASELINE - org.flywaydb.core.api.MigrationState
This migration has baselined this DB.
BASELINE - org.flywaydb.core.api.MigrationType
Baseline migration.
baselineDescription(String) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Sets the description to tag an existing schema with when executing baseline.
baselineOnMigrate(boolean) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Whether to automatically call baseline when migrate is executed against a non-empty schema with no schema history table.
baselineVersion(String) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Sets the version to tag an existing schema with when executing baseline.
baselineVersion(MigrationVersion) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Sets the version to tag an existing schema with when executing baseline.
batch(boolean) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Whether to batch SQL statements when executing them.
BEFORE_BASELINE - org.flywaydb.core.api.callback.Event
Fired before baseline is executed.
BEFORE_CLEAN - org.flywaydb.core.api.callback.Event
Fired before clean is executed.
BEFORE_EACH_MIGRATE - org.flywaydb.core.api.callback.Event
Fired before each individual migration is executed.
BEFORE_EACH_MIGRATE_STATEMENT - org.flywaydb.core.api.callback.Event
Fired before each individual statement in a migration is executed.
BEFORE_EACH_UNDO - org.flywaydb.core.api.callback.Event
Fired before each individual undo is executed.
BEFORE_EACH_UNDO_STATEMENT - org.flywaydb.core.api.callback.Event
Fired before each individual statement in an undo migration is executed.
BEFORE_INFO - org.flywaydb.core.api.callback.Event
Fired before info is executed.
BEFORE_MIGRATE - org.flywaydb.core.api.callback.Event
Fired before migrate is executed.
BEFORE_REPAIR - org.flywaydb.core.api.callback.Event
Fired before repair is executed.
BEFORE_UNDO - org.flywaydb.core.api.callback.Event
Fired before undo is executed.
BEFORE_VALIDATE - org.flywaydb.core.api.callback.Event
Fired before validate is executed.
BELOW_BASELINE - org.flywaydb.core.api.MigrationState
This migration was not applied against this DB, because the schema history table was baselined with a higher version.

C

Callback - Interface in org.flywaydb.core.api.callback
This is the main callback interface that should be implemented to handle Flyway lifecycle events.
callbacks(String...) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Set the callbacks for lifecycle notifications.
callbacks(Callback...) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Set the callbacks for lifecycle notifications.
canExecuteInTransaction() - Method in interface org.flywaydb.core.api.executor.MigrationExecutor
Whether the execution can take place inside a transaction.
canExecuteInTransaction() - Method in class org.flywaydb.core.api.migration.BaseJavaMigration
 
canExecuteInTransaction() - Method in interface org.flywaydb.core.api.migration.JavaMigration
Whether the execution should take place inside a transaction.
canHandleInTransaction(Event, Context) - Method in class org.flywaydb.core.api.callback.BaseCallback
 
canHandleInTransaction(Event, Context) - Method in interface org.flywaydb.core.api.callback.Callback
Whether this event can be handled in a transaction or whether it must be handled outside a transaction instead.
ClassicConfiguration - Class in org.flywaydb.core.api.configuration
JavaBean-style configuration for Flyway.
ClassicConfiguration() - Constructor for class org.flywaydb.core.api.configuration.ClassicConfiguration
Creates a new default configuration.
ClassicConfiguration(ClassLoader) - Constructor for class org.flywaydb.core.api.configuration.ClassicConfiguration
Creates a new default configuration with this classloader.
ClassicConfiguration(Configuration) - Constructor for class org.flywaydb.core.api.configuration.ClassicConfiguration
Creates a new configuration with the same values as this existing one.
clean() - Method in class org.flywaydb.core.Flyway
Drops all objects (tables, views, procedures, triggers, ...) in the configured schemas.
cleanDisabled(boolean) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Whether to disable clean.
cleanOnValidationError(boolean) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Whether to automatically call clean or not when a validation error occurs.
compareTo(Location) - Method in class org.flywaydb.core.api.Location
 
compareTo(MigrationVersion) - Method in class org.flywaydb.core.api.MigrationVersion
 
configuration(Map<String, String>) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Configures Flyway with these properties.
configuration(Properties) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Configures Flyway with these properties.
configuration(Configuration) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Configure with the same values as this existing configuration.
Configuration - Interface in org.flywaydb.core.api.configuration
Flyway configuration.
CONFIGURATION - org.flywaydb.core.api.ErrorCode
 
configure() - Static method in class org.flywaydb.core.Flyway
This is your starting point.
configure(ClassLoader) - Static method in class org.flywaydb.core.Flyway
This is your starting point.
configure(Map<String, String>) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Configures Flyway with these properties.
configure(Properties) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Configures Flyway with these properties.
configure(Configuration) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Configure with the same values as this existing configuration.
configureUsingEnvVars() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Configures Flyway using FLYWAY_* environment variables.
connectRetries(int) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
The maximum number of retries when attempting to connect to the database.
Context - Interface in org.flywaydb.core.api.callback
The context relevant to an event.
Context - Interface in org.flywaydb.core.api.executor
The context relevant to a migration executor.
Context - Interface in org.flywaydb.core.api.migration
The context relevant to a Java-based migration.
Context - Interface in org.flywaydb.core.api.resolver
The context relevant to a migration resolver.
ContextHolder - Class in org.flywaydb.core.api.android
Holds an Android context.
createLogger(Class<?>) - Method in interface org.flywaydb.core.api.logging.LogCreator
Creates an implementation-specific logger for this class.
current() - Method in interface org.flywaydb.core.api.MigrationInfoService
Retrieves the information of the current applied migration, if any.
CURRENT - Static variable in class org.flywaydb.core.api.MigrationVersion
Current version.
CUSTOM - org.flywaydb.core.api.MigrationType
Migrations using custom MigrationResolvers.

D

dataSource(String, String, String) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Sets the datasource to use.
dataSource(DataSource) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Sets the datasource to use.
DB_CONNECTION - org.flywaydb.core.api.ErrorCode
 
debug(String) - Method in interface org.flywaydb.core.api.logging.Log
Logs a debug message.
defaultSchema(String) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Sets the default schema managed by Flyway.
dryRunOutput(File) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Sets the file where to output the SQL statements of a migration dry run.
dryRunOutput(OutputStream) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Sets the stream where to output the SQL statements of a migration dry run.
dryRunOutput(String) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Sets the file where to output the SQL statements of a migration dry run.
DUPLICATE_REPEATABLE_MIGRATION - org.flywaydb.core.api.ErrorCode
 
DUPLICATE_UNDO_MIGRATION - org.flywaydb.core.api.ErrorCode
 
DUPLICATE_VERSIONED_MIGRATION - org.flywaydb.core.api.ErrorCode
 

E

EMPTY - Static variable in class org.flywaydb.core.api.MigrationVersion
Version for an empty schema.
encoding(String) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Sets the encoding of Sql migrations.
encoding(Charset) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Sets the encoding of Sql migrations.
envVars() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Configures Flyway using FLYWAY_* environment variables.
equals(Object) - Method in class org.flywaydb.core.api.Location
 
equals(Object) - Method in class org.flywaydb.core.api.MigrationVersion
 
error(String) - Method in interface org.flywaydb.core.api.logging.Log
Logs an error message.
error(String, Exception) - Method in interface org.flywaydb.core.api.logging.Log
Logs an error message and the exception that caused it.
Error - Interface in org.flywaydb.core.api.callback
An error that occurred while executing a statement.
ERROR - org.flywaydb.core.api.ErrorCode
 
ErrorCode - Enum in org.flywaydb.core.api
 
errorOverrides(String...) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Rules for the built-in error handler that let you override specific SQL states and errors codes in order to force specific errors or warnings to be treated as debug messages, info messages, warnings or errors.
Event - Enum in org.flywaydb.core.api.callback
The Flyway lifecycle events that can be handled in callbacks.
execute(Context) - Method in interface org.flywaydb.core.api.executor.MigrationExecutor
Executes the migration this executor is associated with.

F

FAILED - org.flywaydb.core.api.MigrationState
This migration failed.
FAULT - org.flywaydb.core.api.ErrorCode
 
FILESYSTEM_PREFIX - Static variable in class org.flywaydb.core.api.Location
The prefix for filesystem locations.
FluentConfiguration - Class in org.flywaydb.core.api.configuration
Fluent configuration for Flyway.
FluentConfiguration() - Constructor for class org.flywaydb.core.api.configuration.FluentConfiguration
Creates a new default configuration.
FluentConfiguration(ClassLoader) - Constructor for class org.flywaydb.core.api.configuration.FluentConfiguration
Creates a new default configuration with this class loader.
Flyway - Class in org.flywaydb.core
This is the centre point of Flyway, and for most users, the only class they will ever have to deal with.
Flyway(Configuration) - Constructor for class org.flywaydb.core.Flyway
Creates a new instance of Flyway with this configuration.
FlywayException - Exception in org.flywaydb.core.api
Exception thrown when Flyway encounters a problem.
FlywayException() - Constructor for exception org.flywaydb.core.api.FlywayException
Creates a new FlywayException.
FlywayException(String) - Constructor for exception org.flywaydb.core.api.FlywayException
Creates a new FlywayException with this message.
FlywayException(String, Throwable) - Constructor for exception org.flywaydb.core.api.FlywayException
Creates a new FlywayException with this message and this cause.
FlywayException(String, Throwable, ErrorCode) - Constructor for exception org.flywaydb.core.api.FlywayException
Creates a new FlywayException with this message, cause, and error code.
FlywayException(String, ErrorCode) - Constructor for exception org.flywaydb.core.api.FlywayException
Creates a new FlywayException with this message and error code
FlywayException(Throwable) - Constructor for exception org.flywaydb.core.api.FlywayException
Creates a new FlywayException with this cause.
fromId(String) - Static method in enum org.flywaydb.core.api.callback.Event
Retrieves the event with this id.
fromVersion(String) - Static method in class org.flywaydb.core.api.MigrationVersion
Create a MigrationVersion from a version String.
FUTURE_FAILED - org.flywaydb.core.api.MigrationState
This migration failed.
FUTURE_SUCCESS - org.flywaydb.core.api.MigrationState
This migration succeeded.

G

getBaselineDescription() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
getBaselineDescription() - Method in interface org.flywaydb.core.api.configuration.Configuration
Retrieves the description to tag an existing schema with when executing baseline.
getBaselineDescription() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 
getBaselineVersion() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
getBaselineVersion() - Method in interface org.flywaydb.core.api.configuration.Configuration
Retrieves the version to tag an existing schema with when executing baseline.
getBaselineVersion() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 
getCallbacks() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Gets the callbacks for lifecycle notifications.
getCallbacks() - Method in interface org.flywaydb.core.api.configuration.Configuration
Gets the callbacks for lifecycle notifications.
getCallbacks() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Gets the callbacks for lifecycle notifications.
getChecksum() - Method in class org.flywaydb.core.api.migration.BaseJavaMigration
 
getChecksum() - Method in interface org.flywaydb.core.api.migration.JavaMigration
Computes the checksum of the migration.
getChecksum() - Method in interface org.flywaydb.core.api.MigrationInfo
 
getChecksum() - Method in interface org.flywaydb.core.api.resolver.ResolvedMigration
 
getClassLoader() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
getClassLoader() - Method in interface org.flywaydb.core.api.configuration.Configuration
Retrieves the ClassLoader to use for loading migrations, resolvers, etc from the classpath.
getClassLoader() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 
getCode() - Method in interface org.flywaydb.core.api.callback.Error
 
getCode() - Method in interface org.flywaydb.core.api.callback.Warning
 
getConfiguration() - Method in interface org.flywaydb.core.api.callback.Context
 
getConfiguration() - Method in interface org.flywaydb.core.api.executor.Context
 
getConfiguration() - Method in interface org.flywaydb.core.api.migration.Context
 
getConfiguration() - Method in interface org.flywaydb.core.api.resolver.Context
 
getConfiguration() - Method in class org.flywaydb.core.Flyway
 
getConnection() - Method in interface org.flywaydb.core.api.callback.Context
 
getConnection() - Method in interface org.flywaydb.core.api.executor.Context
 
getConnection() - Method in interface org.flywaydb.core.api.migration.Context
 
getConnectRetries() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
getConnectRetries() - Method in interface org.flywaydb.core.api.configuration.Configuration
The maximum number of retries when attempting to connect to the database.
getConnectRetries() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 
getContext() - Static method in class org.flywaydb.core.api.android.ContextHolder
 
getDataSource() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
getDataSource() - Method in interface org.flywaydb.core.api.configuration.Configuration
Retrieves the dataSource to use to access the database.
getDataSource() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 
getDefaultSchema() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
getDefaultSchema() - Method in interface org.flywaydb.core.api.configuration.Configuration
Retrieves the default schema managed by Flyway.
getDefaultSchema() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 
getDescription() - Method in class org.flywaydb.core.api.migration.BaseJavaMigration
 
getDescription() - Method in interface org.flywaydb.core.api.migration.JavaMigration
 
getDescription() - Method in interface org.flywaydb.core.api.MigrationInfo
 
getDescription() - Method in interface org.flywaydb.core.api.resolver.ResolvedMigration
 
getDescriptor() - Method in class org.flywaydb.core.api.Location
 
getDisplayName() - Method in enum org.flywaydb.core.api.MigrationState
 
getDryRunOutput() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
getDryRunOutput() - Method in interface org.flywaydb.core.api.configuration.Configuration
The stream where to output the SQL statements of a migration dry run.
getDryRunOutput() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 
getEncoding() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
getEncoding() - Method in interface org.flywaydb.core.api.configuration.Configuration
Retrieves the encoding of Sql migrations.
getEncoding() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 
getErrorCode() - Method in exception org.flywaydb.core.api.FlywayException
 
getErrorOverrides() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
getErrorOverrides() - Method in interface org.flywaydb.core.api.configuration.Configuration
Rules for the built-in error handler that let you override specific SQL states and errors codes in order to force specific errors or warnings to be treated as debug messages, info messages, warnings or errors.
getErrorOverrides() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 
getErrors() - Method in interface org.flywaydb.core.api.callback.Statement
 
getExecutionTime() - Method in interface org.flywaydb.core.api.MigrationInfo
 
getExecutor() - Method in interface org.flywaydb.core.api.resolver.ResolvedMigration
 
getId() - Method in enum org.flywaydb.core.api.callback.Event
 
getInitSql() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
getInitSql() - Method in interface org.flywaydb.core.api.configuration.Configuration
The SQL statements to run to initialize a new database connection immediately after opening it.
getInitSql() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 
getInstalledBy() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
getInstalledBy() - Method in interface org.flywaydb.core.api.configuration.Configuration
The username that will be recorded in the schema history table as having applied the migration.
getInstalledBy() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 
getInstalledBy() - Method in interface org.flywaydb.core.api.MigrationInfo
 
getInstalledOn() - Method in interface org.flywaydb.core.api.MigrationInfo
 
getInstalledRank() - Method in interface org.flywaydb.core.api.MigrationInfo
 
getJavaMigrations() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
getJavaMigrations() - Method in interface org.flywaydb.core.api.configuration.Configuration
The manually added Java-based migrations.
getJavaMigrations() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 
getLicenseKey() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
getLicenseKey() - Method in interface org.flywaydb.core.api.configuration.Configuration
Your Flyway license key (FL01...).
getLicenseKey() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 
getLocations() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
getLocations() - Method in interface org.flywaydb.core.api.configuration.Configuration
Retrieves the locations to scan recursively for migrations.
getLocations() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 
getLog(Class<?>) - Static method in class org.flywaydb.core.api.logging.LogFactory
Retrieves the matching logger for this class.
getMajor() - Method in class org.flywaydb.core.api.MigrationVersion
 
getMajorAsString() - Method in class org.flywaydb.core.api.MigrationVersion
 
getMessage() - Method in interface org.flywaydb.core.api.callback.Error
 
getMessage() - Method in interface org.flywaydb.core.api.callback.Warning
 
getMigrationInfo() - Method in interface org.flywaydb.core.api.callback.Context
 
getMinorAsString() - Method in class org.flywaydb.core.api.MigrationVersion
 
getPath() - Method in class org.flywaydb.core.api.Location
 
getPhysicalLocation() - Method in interface org.flywaydb.core.api.MigrationInfo
 
getPhysicalLocation() - Method in interface org.flywaydb.core.api.resolver.ResolvedMigration
 
getPlaceholderPrefix() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
getPlaceholderPrefix() - Method in interface org.flywaydb.core.api.configuration.Configuration
Retrieves the prefix of every placeholder.
getPlaceholderPrefix() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 
getPlaceholders() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
getPlaceholders() - Method in interface org.flywaydb.core.api.configuration.Configuration
Retrieves the map of <placeholder, replacementValue> to apply to sql migration scripts.
getPlaceholders() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 
getPlaceholderSuffix() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
getPlaceholderSuffix() - Method in interface org.flywaydb.core.api.configuration.Configuration
Retrieves the suffix of every placeholder.
getPlaceholderSuffix() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 
getPrefix() - Method in class org.flywaydb.core.api.Location
 
getRepeatableSqlMigrationPrefix() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
getRepeatableSqlMigrationPrefix() - Method in interface org.flywaydb.core.api.configuration.Configuration
Retrieves the file name prefix for repeatable SQL migrations.
getRepeatableSqlMigrationPrefix() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 
getResolvers() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
getResolvers() - Method in interface org.flywaydb.core.api.configuration.Configuration
Retrieves the custom MigrationResolvers to be used in addition to the built-in ones for resolving Migrations to apply.
getResolvers() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 
getSchemas() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
getSchemas() - Method in interface org.flywaydb.core.api.configuration.Configuration
Retrieves the schemas managed by Flyway.
getSchemas() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 
getScript() - Method in interface org.flywaydb.core.api.MigrationInfo
 
getScript() - Method in interface org.flywaydb.core.api.resolver.ResolvedMigration
 
getSql() - Method in interface org.flywaydb.core.api.callback.Statement
 
getSqlMigrationPrefix() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
getSqlMigrationPrefix() - Method in interface org.flywaydb.core.api.configuration.Configuration
The file name prefix for versioned SQL migrations.
getSqlMigrationPrefix() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 
getSqlMigrationSeparator() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
getSqlMigrationSeparator() - Method in interface org.flywaydb.core.api.configuration.Configuration
Retrieves the file name separator for sql migrations.
getSqlMigrationSeparator() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 
getSqlMigrationSuffixes() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
getSqlMigrationSuffixes() - Method in interface org.flywaydb.core.api.configuration.Configuration
The file name suffixes for SQL migrations.
getSqlMigrationSuffixes() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 
getState() - Method in interface org.flywaydb.core.api.callback.Error
 
getState() - Method in interface org.flywaydb.core.api.callback.Warning
 
getState() - Method in interface org.flywaydb.core.api.MigrationInfo
 
getStatement() - Method in interface org.flywaydb.core.api.callback.Context
 
getTable() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
getTable() - Method in interface org.flywaydb.core.api.configuration.Configuration
Retrieves the name of the schema history table that will be used by Flyway.
getTable() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 
getTablespace() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
getTablespace() - Method in interface org.flywaydb.core.api.configuration.Configuration
Retrieves the tablespace where to create the schema history table that will be used by Flyway.
getTablespace() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 
getTarget() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
getTarget() - Method in interface org.flywaydb.core.api.configuration.Configuration
Gets the target version up to which Flyway should consider migrations.
getTarget() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 
getType() - Method in interface org.flywaydb.core.api.MigrationInfo
 
getType() - Method in interface org.flywaydb.core.api.resolver.ResolvedMigration
 
getUndoSqlMigrationPrefix() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
getUndoSqlMigrationPrefix() - Method in interface org.flywaydb.core.api.configuration.Configuration
The file name prefix for undo SQL migrations.
getUndoSqlMigrationPrefix() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 
getVersion() - Method in class org.flywaydb.core.api.migration.BaseJavaMigration
 
getVersion() - Method in interface org.flywaydb.core.api.migration.JavaMigration
 
getVersion() - Method in interface org.flywaydb.core.api.MigrationInfo
 
getVersion() - Method in class org.flywaydb.core.api.MigrationVersion
 
getVersion() - Method in interface org.flywaydb.core.api.resolver.ResolvedMigration
 
getWarnings() - Method in interface org.flywaydb.core.api.callback.Statement
 
group(boolean) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Whether to group all pending migrations together in the same transaction when applying them (only recommended for databases with support for DDL transactions).

H

handle(Event, Context) - Method in interface org.flywaydb.core.api.callback.Callback
Handles this Flyway lifecycle event.
hashCode() - Method in class org.flywaydb.core.api.Location
 
hashCode() - Method in class org.flywaydb.core.api.MigrationVersion
 

I

IGNORED - org.flywaydb.core.api.MigrationState
This usually indicates a problem.
ignoreFutureMigrations(boolean) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Whether to ignore future migrations when reading the schema history table.
ignoreIgnoredMigrations(boolean) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Ignore ignored migrations when reading the schema history table.
ignoreMissingMigrations(boolean) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Ignore missing migrations when reading the schema history table.
ignorePendingMigrations(boolean) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Ignore pending migrations when reading the schema history table.
info() - Method in class org.flywaydb.core.Flyway
Retrieves the complete information about all the migrations including applied, pending and current migrations with details and status.
info(String) - Method in interface org.flywaydb.core.api.logging.Log
Logs an info message.
initSql(String) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
The SQL statements to run to initialize a new database connection immediately after opening it.
installedBy(String) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
The username that will be recorded in the schema history table as having applied the migration.
isApplied() - Method in enum org.flywaydb.core.api.MigrationState
 
isAtLeast(String) - Method in class org.flywaydb.core.api.MigrationVersion
Convenience method for quickly checking whether this version is at least as new as this other version.
isBaselineOnMigrate() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
isBaselineOnMigrate() - Method in interface org.flywaydb.core.api.configuration.Configuration
Whether to automatically call baseline when migrate is executed against a non-empty schema with no schema history table.
isBaselineOnMigrate() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 
isBatch() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
isBatch() - Method in interface org.flywaydb.core.api.configuration.Configuration
Whether to batch SQL statements when executing them.
isBatch() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 
isClassPath() - Method in class org.flywaydb.core.api.Location
Checks whether this denotes a location on the classpath.
isCleanDisabled() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
isCleanDisabled() - Method in interface org.flywaydb.core.api.configuration.Configuration
Whether to disable clean.
isCleanDisabled() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 
isCleanOnValidationError() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
isCleanOnValidationError() - Method in interface org.flywaydb.core.api.configuration.Configuration
Whether to automatically call clean or not when a validation error occurs.
isCleanOnValidationError() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 
isDebugEnabled() - Method in interface org.flywaydb.core.api.logging.Log
 
isFailed() - Method in enum org.flywaydb.core.api.MigrationState
 
isFileSystem() - Method in class org.flywaydb.core.api.Location
Checks whether this denotes a location on the filesystem.
isGroup() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
isGroup() - Method in interface org.flywaydb.core.api.configuration.Configuration
Whether to group all pending migrations together in the same transaction when applying them (only recommended for databases with support for DDL transactions).
isGroup() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 
isHandled() - Method in interface org.flywaydb.core.api.callback.Error
Checks whether this error has already been handled.
isHandled() - Method in interface org.flywaydb.core.api.callback.Warning
Checks whether this warning has already been handled.
isIgnoreFutureMigrations() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
isIgnoreFutureMigrations() - Method in interface org.flywaydb.core.api.configuration.Configuration
Ignore future migrations when reading the schema history table.
isIgnoreFutureMigrations() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 
isIgnoreIgnoredMigrations() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
isIgnoreIgnoredMigrations() - Method in interface org.flywaydb.core.api.configuration.Configuration
Ignore ignored migrations when reading the schema history table.
isIgnoreIgnoredMigrations() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 
isIgnoreMissingMigrations() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
isIgnoreMissingMigrations() - Method in interface org.flywaydb.core.api.configuration.Configuration
Ignore missing migrations when reading the schema history table.
isIgnoreMissingMigrations() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 
isIgnorePendingMigrations() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
isIgnorePendingMigrations() - Method in interface org.flywaydb.core.api.configuration.Configuration
Ignore pending migrations when reading the schema history table.
isIgnorePendingMigrations() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 
isMajorNewerThan(String) - Method in class org.flywaydb.core.api.MigrationVersion
Convenience method for quickly checking whether this major version is newer than this other major version.
isMixed() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
isMixed() - Method in interface org.flywaydb.core.api.configuration.Configuration
Whether to allow mixing transactional and non-transactional statements within the same migration.
isMixed() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 
isNewerThan(String) - Method in class org.flywaydb.core.api.MigrationVersion
Convenience method for quickly checking whether this version is newer than this other version.
isOracleSqlplus() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
isOracleSqlplus() - Method in interface org.flywaydb.core.api.configuration.Configuration
Whether to Flyway's support for Oracle SQL*Plus commands should be activated.
isOracleSqlplus() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 
isOracleSqlplusWarn() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
isOracleSqlplusWarn() - Method in interface org.flywaydb.core.api.configuration.Configuration
Whether Flyway should issue a warning instead of an error whenever it encounters an Oracle SQL*Plus statement it doesn't yet support.
isOracleSqlplusWarn() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 
isOutOfOrder() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
isOutOfOrder() - Method in interface org.flywaydb.core.api.configuration.Configuration
Allows migrations to be run "out of order".
isOutOfOrder() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 
isParentOf(Location) - Method in class org.flywaydb.core.api.Location
Checks whether this location is a parent of this other location.
isPlaceholderReplacement() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
isPlaceholderReplacement() - Method in interface org.flywaydb.core.api.configuration.Configuration
Checks whether placeholders should be replaced.
isPlaceholderReplacement() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 
isResolved() - Method in enum org.flywaydb.core.api.MigrationState
 
isSkipDefaultCallbacks() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
isSkipDefaultCallbacks() - Method in interface org.flywaydb.core.api.configuration.Configuration
Whether Flyway should skip the default callbacks.
isSkipDefaultCallbacks() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 
isSkipDefaultResolvers() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
isSkipDefaultResolvers() - Method in interface org.flywaydb.core.api.configuration.Configuration
Whether Flyway should skip the default resolvers.
isSkipDefaultResolvers() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 
isStream() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
isStream() - Method in interface org.flywaydb.core.api.configuration.Configuration
Whether to stream SQL migrations when executing them.
isStream() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 
isSynthetic() - Method in enum org.flywaydb.core.api.MigrationType
 
isUndo() - Method in class org.flywaydb.core.api.migration.BaseJavaMigration
 
isUndo() - Method in interface org.flywaydb.core.api.migration.JavaMigration
Whether this is an undo migration for a previously applied versioned migration.
isUndo() - Method in enum org.flywaydb.core.api.MigrationType
 
isValidateOnMigrate() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
 
isValidateOnMigrate() - Method in interface org.flywaydb.core.api.configuration.Configuration
Whether to automatically call validate or not when running migrate.
isValidateOnMigrate() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 

J

JavaMigration - Interface in org.flywaydb.core.api.migration
Interface to be implemented by Java-based Migrations.
javaMigrations(JavaMigration...) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
The manually added Java-based migrations.
JDBC - org.flywaydb.core.api.MigrationType
JDBC Java-based migrations.
JDBC_DRIVER - org.flywaydb.core.api.ErrorCode
 

L

LATEST - Static variable in class org.flywaydb.core.api.MigrationVersion
Latest version.
licenseKey(String) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Your Flyway license key (FL01...).
load() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Loads this configuration into a new Flyway instance.
Location - Class in org.flywaydb.core.api
A location to load migrations from.
Location(String) - Constructor for class org.flywaydb.core.api.Location
Creates a new location.
locations(String...) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Sets the locations to scan recursively for migrations.
locations(Location...) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Sets the locations to scan recursively for migrations.
Log - Interface in org.flywaydb.core.api.logging
A logger.
LogCreator - Interface in org.flywaydb.core.api.logging
Factory for implementation-specific loggers.
LogFactory - Class in org.flywaydb.core.api.logging
Factory for loggers.

M

migrate() - Method in class org.flywaydb.core.Flyway
Starts the database migration.
migrate(Context) - Method in interface org.flywaydb.core.api.migration.JavaMigration
Executes this migration.
MigrationExecutor - Interface in org.flywaydb.core.api.executor
Executes a migration.
MigrationInfo - Interface in org.flywaydb.core.api
Info about a migration.
MigrationInfoService - Interface in org.flywaydb.core.api
Info about all migrations, including applied, current and pending with details and status.
MigrationResolver - Interface in org.flywaydb.core.api.resolver
Resolves available migrations.
MigrationState - Enum in org.flywaydb.core.api
The state of a migration.
MigrationType - Enum in org.flywaydb.core.api
Type of migration.
MigrationVersion - Class in org.flywaydb.core.api
A version of a migration.
MISSING_FAILED - org.flywaydb.core.api.MigrationState
This migration failed.
MISSING_SUCCESS - org.flywaydb.core.api.MigrationState
This migration succeeded.
mixed(boolean) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Whether to allow mixing transactional and non-transactional statements within the same migration.

O

oracleSqlplus(boolean) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Whether to Flyway's support for Oracle SQL*Plus commands should be activated.
oracleSqlplusWarn(boolean) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Whether Flyway should issue a warning instead of an error whenever it encounters an Oracle SQL*Plus statement it doesn't yet support.
org.flywaydb.core - package org.flywaydb.core
The main Flyway package and for most users, the only one they'll ever need to know about.
org.flywaydb.core.api - package org.flywaydb.core.api
FlywayException, MigrationInfo and related classes.
org.flywaydb.core.api.android - package org.flywaydb.core.api.android
Android-specific helper classes.
org.flywaydb.core.api.callback - package org.flywaydb.core.api.callback
Interfaces for Flyway lifecycle callbacks.
org.flywaydb.core.api.configuration - package org.flywaydb.core.api.configuration
Interfaces for Flyway configuration injection.
org.flywaydb.core.api.executor - package org.flywaydb.core.api.executor
Interfaces for Migration executors.
org.flywaydb.core.api.logging - package org.flywaydb.core.api.logging
Interfaces for Flyway's log abstraction.
org.flywaydb.core.api.migration - package org.flywaydb.core.api.migration
Interfaces for Migration implementors.
org.flywaydb.core.api.resolver - package org.flywaydb.core.api.resolver
Interfaces for Migration resolvers.
OUT_OF_ORDER - org.flywaydb.core.api.MigrationState
This migration succeeded.
OUTDATED - org.flywaydb.core.api.MigrationState
This is a repeatable migration that is outdated and should be re-applied.
outOfOrder(boolean) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Allows migrations to be run "out of order".
outputQueryResults() - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Whether Flyway should output a table with the results of queries when executing migrations.
outputQueryResults() - Method in interface org.flywaydb.core.api.configuration.Configuration
Whether Flyway should output a table with the results of queries when executing migrations.
outputQueryResults() - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
 

P

pending() - Method in interface org.flywaydb.core.api.MigrationInfoService
Retrieves the full set of infos about pending migrations, available locally, but not yet applied to the DB.
PENDING - org.flywaydb.core.api.MigrationState
This migration has not been applied yet.
placeholderPrefix(String) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Sets the prefix of every placeholder.
placeholderReplacement(boolean) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Sets whether placeholders should be replaced.
placeholders(Map<String, String>) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Sets the placeholders to replace in sql migration scripts.
placeholderSuffix(String) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Sets the suffix of every placeholder.

R

repair() - Method in class org.flywaydb.core.Flyway
Repairs the Flyway schema history table.
repeatableSqlMigrationPrefix(String) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Sets the file name prefix for repeatable sql migrations.
ResolvedMigration - Interface in org.flywaydb.core.api.resolver
Migration resolved through a MigrationResolver.
resolveMigrations(Context) - Method in interface org.flywaydb.core.api.resolver.MigrationResolver
Resolves the available migrations.
resolvers(String...) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Sets custom MigrationResolvers to be used in addition to the built-in ones for resolving Migrations to apply.
resolvers(MigrationResolver...) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Sets custom MigrationResolvers to be used in addition to the built-in ones for resolving Migrations to apply.

S

SCHEMA - org.flywaydb.core.api.MigrationType
Schema creation migration.
schemas(String...) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Sets the schemas managed by Flyway.
setBaselineDescription(String) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Sets the description to tag an existing schema with when executing baseline.
setBaselineOnMigrate(boolean) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Whether to automatically call baseline when migrate is executed against a non-empty schema with no schema history table.
setBaselineVersion(MigrationVersion) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Sets the version to tag an existing schema with when executing baseline.
setBaselineVersionAsString(String) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Sets the version to tag an existing schema with when executing baseline.
setBatch(boolean) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Whether to batch SQL statements when executing them.
setCallbacks(Callback...) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Set the callbacks for lifecycle notifications.
setCallbacksAsClassNames(String...) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Set the callbacks for lifecycle notifications.
setCleanDisabled(boolean) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Whether to disable clean.
setCleanOnValidationError(boolean) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Whether to automatically call clean or not when a validation error occurs.
setConnectRetries(int) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
The maximum number of retries when attempting to connect to the database.
setContext(Context) - Static method in class org.flywaydb.core.api.android.ContextHolder
 
setDataSource(String, String, String) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Sets the datasource to use.
setDataSource(DataSource) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Sets the datasource to use.
setDefaultSchema(String) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Sets the default schema managed by Flyway.
setDryRunOutput(OutputStream) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Sets the stream where to output the SQL statements of a migration dry run.
setDryRunOutputAsFile(File) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Sets the file where to output the SQL statements of a migration dry run.
setDryRunOutputAsFileName(String) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Sets the file where to output the SQL statements of a migration dry run.
setEncoding(Charset) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Sets the encoding of Sql migrations.
setEncodingAsString(String) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Sets the encoding of Sql migrations.
setErrorOverrides(String...) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Rules for the built-in error handler that let you override specific SQL states and errors codes in order to force specific errors or warnings to be treated as debug messages, info messages, warnings or errors.
setFallbackLogCreator(LogCreator) - Static method in class org.flywaydb.core.api.logging.LogFactory
Sets the fallback LogCreator.
setGroup(boolean) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Whether to group all pending migrations together in the same transaction when applying them (only recommended for databases with support for DDL transactions).
setHandled(boolean) - Method in interface org.flywaydb.core.api.callback.Error
Sets whether this error has already been handled.
setHandled(boolean) - Method in interface org.flywaydb.core.api.callback.Warning
Sets whether this warning has already been handled.
setIgnoreFutureMigrations(boolean) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Whether to ignore future migrations when reading the schema history table.
setIgnoreIgnoredMigrations(boolean) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Ignore ignored migrations when reading the schema history table.
setIgnoreMissingMigrations(boolean) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Ignore missing migrations when reading the schema history table.
setIgnorePendingMigrations(boolean) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Ignore pending migrations when reading the schema history table.
setInitSql(String) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
The SQL statements to run to initialize a new database connection immediately after opening it.
setInstalledBy(String) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
The username that will be recorded in the schema history table as having applied the migration.
setJavaMigrations(JavaMigration...) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
The manually added Java-based migrations.
setLicenseKey(String) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Your Flyway license key (FL01...).
setLocations(Location...) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Sets the locations to scan recursively for migrations.
setLocationsAsStrings(String...) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Sets the locations to scan recursively for migrations.
setLogCreator(LogCreator) - Static method in class org.flywaydb.core.api.logging.LogFactory
Sets the LogCreator that will be used.
setMixed(boolean) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Whether to allow mixing transactional and non-transactional statements within the same migration.
setOracleSqlplus(boolean) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Whether to Flyway's support for Oracle SQL*Plus commands should be activated.
setOracleSqlplusWarn(boolean) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Whether Flyway should issue a warning instead of an error whenever it encounters an Oracle SQL*Plus statement it doesn't yet support.
setOutOfOrder(boolean) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Allows migrations to be run "out of order".
setPlaceholderPrefix(String) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Sets the prefix of every placeholder.
setPlaceholderReplacement(boolean) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Sets whether placeholders should be replaced.
setPlaceholders(Map<String, String>) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Sets the placeholders to replace in sql migration scripts.
setPlaceholderSuffix(String) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Sets the suffix of every placeholder.
setRepeatableSqlMigrationPrefix(String) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Sets the file name prefix for repeatable sql migrations.
setResolvers(MigrationResolver...) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Sets custom MigrationResolvers to be used in addition to the built-in ones for resolving Migrations to apply.
setResolversAsClassNames(String...) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Sets custom MigrationResolvers to be used in addition to the built-in ones for resolving Migrations to apply.
setSchemas(String...) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Sets the schemas managed by Flyway.
setSkipDefaultCallbacks(boolean) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Whether Flyway should skip the default callbacks.
setSkipDefaultResolvers(boolean) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Whether Flyway should skip the default resolvers.
setSqlMigrationPrefix(String) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Sets the file name prefix for sql migrations.
setSqlMigrationSeparator(String) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Sets the file name separator for sql migrations.
setSqlMigrationSuffixes(String...) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
The file name suffixes for SQL migrations.
setStream(boolean) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Whether to stream SQL migrations when executing them.
setTable(String) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Sets the name of the schema history table that will be used by Flyway.
setTablespace(String) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Sets the tablespace where to create the schema history table that will be used by Flyway.
setTarget(MigrationVersion) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Sets the target version up to which Flyway should consider migrations.
setTargetAsString(String) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Sets the target version up to which Flyway should consider migrations.
setUndoSqlMigrationPrefix(String) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Sets the file name prefix for undo SQL migrations.
setValidateOnMigrate(boolean) - Method in class org.flywaydb.core.api.configuration.ClassicConfiguration
Whether to automatically call validate or not when running migrate.
skipDefaultCallbacks(boolean) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Whether Flyway should skip the default callbacks.
skipDefaultResolvers(boolean) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Whether Flyway should skip the default resolvers.
SPRING_JDBC - org.flywaydb.core.api.MigrationType
Deprecated.
Will be removed in Flyway 7.0. Use JDBC instead.
SQL - org.flywaydb.core.api.MigrationType
SQL migrations.
sqlMigrationPrefix(String) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Sets the file name prefix for sql migrations.
sqlMigrationSeparator(String) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Sets the file name separator for sql migrations.
sqlMigrationSuffixes(String...) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
The file name suffixes for SQL migrations.
Statement - Interface in org.flywaydb.core.api.callback
The statement relevant to an event.
stream(boolean) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Whether to stream SQL migrations when executing them.
SUCCESS - org.flywaydb.core.api.MigrationState
This migration succeeded.
SUPERSEDED - org.flywaydb.core.api.MigrationState
This is a repeatable migration that is outdated and has already been superseded by a newer run.
supports(Event, Context) - Method in class org.flywaydb.core.api.callback.BaseCallback
 
supports(Event, Context) - Method in interface org.flywaydb.core.api.callback.Callback
Whether this callback supports this event or not.

T

table(String) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Sets the name of the schema history table that will be used by Flyway.
tablespace(String) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Sets the tablespace where to create the schema history table that will be used by Flyway.
target(String) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Sets the target version up to which Flyway should consider migrations.
target(MigrationVersion) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Sets the target version up to which Flyway should consider migrations.
toString() - Method in enum org.flywaydb.core.api.callback.Event
 
toString() - Method in class org.flywaydb.core.api.Location
 
toString() - Method in class org.flywaydb.core.api.MigrationVersion
 

U

undo() - Method in class org.flywaydb.core.Flyway
Undoes the most recently applied versioned migration.
UNDO_CUSTOM - org.flywaydb.core.api.MigrationType
Undo migrations using custom MigrationResolvers.
UNDO_JDBC - org.flywaydb.core.api.MigrationType
Undo JDBC java-based migrations.
UNDO_SPRING_JDBC - org.flywaydb.core.api.MigrationType
Deprecated.
Will be removed in Flyway 7.0. Use UNDO_JDBC instead.
UNDO_SQL - org.flywaydb.core.api.MigrationType
Undo SQL migrations.
UNDONE - org.flywaydb.core.api.MigrationState
This versioned migration succeeded, but has since been undone.
undoSqlMigrationPrefix(String) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Sets the file name prefix for undo SQL migrations.

V

validate() - Method in class org.flywaydb.core.Flyway
Validate applied migrations against resolved ones (on the filesystem or classpath) to detect accidental changes that may prevent the schema(s) from being recreated exactly.
validateOnMigrate(boolean) - Method in class org.flywaydb.core.api.configuration.FluentConfiguration
Whether to automatically call validate or not when running migrate.
valueOf(String) - Static method in enum org.flywaydb.core.api.callback.Event
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.flywaydb.core.api.ErrorCode
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.flywaydb.core.api.MigrationState
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.flywaydb.core.api.MigrationType
Returns the enum constant of this type with the specified name.
values() - Static method in enum org.flywaydb.core.api.callback.Event
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.flywaydb.core.api.ErrorCode
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.flywaydb.core.api.MigrationState
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.flywaydb.core.api.MigrationType
Returns an array containing the constants of this enum type, in the order they are declared.

W

warn(String) - Method in interface org.flywaydb.core.api.logging.Log
Logs a warning message.
Warning - Interface in org.flywaydb.core.api.callback
A warning that occurred while executing a statement.
A B C D E F G H I J L M O P R S T U V W 
All Classes All Packages