- All Superinterfaces:
- Scope
Migration is executed.
 
 This type is a Scope with independent lifecycle and its own
 Scope.data() map.
 
This is EXPERIMENTAL functionality and subject to change in future jOOQ versions.
- Author:
- Lukas Eder
- See Also:
- 
Method SummaryModifier and TypeMethodDescriptionbooleanbaseline()Whether this migration sets a baseline.The set of schemas that are being migrated, as specified inSettings.getMigrationSchemata().@NotNull Commit@NotNull Queries@NotNull Commit@NotNull Queriesqueries()@NotNull Commit@NotNull Commit@NotNull Queryquery()The currentQuerythat is being executed.Methods inherited from interface org.jooq.Scopeconfiguration, creationTime, data, data, data, dialect, dsl, family, settings
- 
Method Details- 
migratedSchemasThe set of schemas that are being migrated, as specified inSettings.getMigrationSchemata().This is available on all MigrationListenerevents.
- 
migrationFromTheCommitfrom which aMigrationhas started.migrationFrom()andmigrationTo()versions need not be consecutive versions for any given migration. If a migration jumps a few versions, these two methods will only return the endpoints.This is available on all MigrationListenerevents.
- 
migrationToTheCommitto which aMigrationis headed.migrationFrom()andmigrationTo()versions need not be consecutive versions for any given migration. If a migration jumps a few versions, these two methods will only return the endpoints.This is available on all MigrationListenerevents.
- 
migrationQueriesThe complete set ofQueriesthat are executed betweenmigrationFrom()andmigrationTo().This is available on all MigrationListenerevents.
- 
queriesFromTheVersionfrom which an individual set ofQuerieshas started.queriesFrom()andqueriesTo()versions are consecutive versions in a migration. If a migration jumps a few versions, these two methods might return those intermediate versions on these events:
- 
queriesToTheVersionto which an individual set ofQueriesis headed.queriesFrom()andqueriesTo()versions are consecutive versions in a migration. If a migration jumps a few versions, these two methods might return those intermediate versions on these events:
- 
queriesThe complete set ofQueriesthat are executed betweenqueriesFrom()andqueriesTo().This is available on the same MigrationListenerevents asqueriesFrom()andqueriesTo().
- 
queryThe currentQuerythat is being executed.This is available on MigrationListener.queryStart(MigrationContext)andMigrationListener.queryEnd(MigrationContext).
- 
baselineboolean baseline()Whether this migration sets a baseline.
 
-