Interface FlywayConfiguration
-
- All Superinterfaces:
Configuration
@Deprecated public interface FlywayConfiguration extends Configuration
Deprecated.UseConfigurationinstead. Will be removed in Flyway 6.0.Readonly interface for main Flyway configuration. Can be used to provide configuration data to migrations and callbacks.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description StringgetSqlMigrationSuffix()Deprecated.UseConfiguration.getSqlMigrationSuffixes()instead.-
Methods inherited from interface org.flywaydb.core.api.configuration.Configuration
getBaselineDescription, getBaselineVersion, getCallbacks, getClassLoader, getConnectRetries, getDataSource, getDryRunOutput, getEncoding, getErrorHandlers, getErrorOverrides, getInitSql, getInstalledBy, getLicenseKey, getLocations, getPlaceholderPrefix, getPlaceholders, getPlaceholderSuffix, getRepeatableSqlMigrationPrefix, getResolvers, getSchemas, getSqlMigrationPrefix, getSqlMigrationSeparator, getSqlMigrationSuffixes, getTable, getTarget, getUndoSqlMigrationPrefix, isBaselineOnMigrate, isBatch, isCleanDisabled, isCleanOnValidationError, isGroup, isIgnoreFutureMigrations, isIgnoreIgnoredMigrations, isIgnoreMissingMigrations, isIgnorePendingMigrations, isMixed, isOracleSqlplus, isOutOfOrder, isPlaceholderReplacement, isSkipDefaultCallbacks, isSkipDefaultResolvers, isStream, isValidateOnMigrate
-
-
-
-
Method Detail
-
getSqlMigrationSuffix
@Deprecated String getSqlMigrationSuffix()
Deprecated.UseConfiguration.getSqlMigrationSuffixes()instead. Will be removed in Flyway 6.0.0.Retrieves the file name suffix for sql migrations.Sql migrations have the following file name structure: prefixVERSIONseparatorDESCRIPTIONsuffix , which using the defaults translates to V1_1__My_description.sql
- Returns:
- The file name suffix for sql migrations. (default: .sql)
-
-