Class DefaultDbMigration
- java.lang.Object
-
- io.ebeaninternal.dbmigration.DefaultDbMigration
-
- All Implemented Interfaces:
DbMigration
public class DefaultDbMigration extends Object implements DbMigration
Generates DB Migration xml and sql scripts.Reads the prior migrations and compares with the current model of the EbeanServer and generates a migration 'diff' in the form of xml document with the logical schema changes and a series of sql scripts to apply, rollback the applied changes if necessary and drop objects (drop tables, drop columns).
This does not run the migration or ddl scripts but just generates them.
DbMigration migration = DbMigration.create(); migration.setPathToResources("src/main/resources"); migration.setPlatform(Platform.POSTGRES); migration.generateMigration();
-
-
Constructor Summary
Constructors Constructor Description DefaultDbMigration()Create for offline migration generation.DefaultDbMigration(io.ebean.EbeanServer server)Create using online EbeanServer.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddDatabasePlatform(io.ebean.config.dbplatform.DatabasePlatform databasePlatform, String prefix)Add an additional databasePlatform to write the migration DDL.voidaddPlatform(io.ebean.annotation.Platform platform, String prefix)Add an additional platform to write the migration DDL.StringgenerateInitMigration()Generate an "init" migration which has all changes.StringgenerateMigration()Generate the next migration xml file and associated apply and rollback sql scripts.List<String>getPendingDrops()Return the versions containing pending drops.voidsetAddForeignKeySkipCheck(boolean addForeignKeySkipCheck)Set to true if ALTER TABLE ADD FOREIGN KEY should be generated with an option to skip validation.voidsetApplyPrefix(String applyPrefix)Set the prefix for the version.voidsetGeneratePendingDrop(String generatePendingDrop)Generate a migration for the version specified that contains pending drops.voidsetHeader(String header)Set the header that is included in the generated DDL script.voidsetIncludeBuiltInPartitioning(boolean includeBuiltInPartitioning)Set this to false to exclude the builtin support for table partitioning (with @DbPartition).voidsetIncludeGeneratedFileComment(boolean includeGeneratedFileComment)Set to true to include a generated header comment in the DDL script.voidsetLockTimeout(int seconds)Set the lock timeout to be included with the DDL generation.voidsetLogToSystemOut(boolean logToSystemOut)Set to false to suppress logging to System out.voidsetMigrationPath(String migrationPath)Set the path where migrations are generated to (which defaults to "dbmigration").voidsetName(String name)Set the name of the migration to be generated.voidsetPathToResources(String pathToResources)Set the path from the current working directory to the application resources.voidsetPlatform(io.ebean.annotation.Platform platform)Set the specific platform to generate DDL for.voidsetPlatform(io.ebean.config.dbplatform.DatabasePlatform databasePlatform)Set the specific platform to generate DDL for.voidsetServer(io.ebean.Database database)Set the server to use to determine the current model.voidsetServerConfig(io.ebean.config.DatabaseConfig config)Set the DatabaseConfig to use.voidsetStrictMode(boolean strictMode)Set to false to turn off strict mode.voidsetVersion(String version)Set the version of the migration to be generated.
-
-
-
Constructor Detail
-
DefaultDbMigration
public DefaultDbMigration()
Create for offline migration generation.
-
DefaultDbMigration
public DefaultDbMigration(io.ebean.EbeanServer server)
Create using online EbeanServer.
-
-
Method Detail
-
setPathToResources
public void setPathToResources(String pathToResources)
Set the path from the current working directory to the application resources.This defaults to maven style 'src/main/resources'.
- Specified by:
setPathToResourcesin interfaceDbMigration
-
setMigrationPath
public void setMigrationPath(String migrationPath)
Description copied from interface:DbMigrationSet the path where migrations are generated to (which defaults to "dbmigration").Normally we only use this when we use Ebean to generate the database migrations and then use some other tool like FlywayDB to run the migrations.
Example: with
setMigrationPath("db/migration")... the migrations are generated intosrc/resources/db/migration.Note that if Ebean migration runner is used we should not use this method but instead set the migrationPath via a property such that both the migration generator and migration runner both use the same path.
- Specified by:
setMigrationPathin interfaceDbMigration- Parameters:
migrationPath- The path that migrations are generated into.
-
setServer
public void setServer(io.ebean.Database database)
Set the server to use to determine the current model. Typically this is not called explicitly.- Specified by:
setServerin interfaceDbMigration
-
setServerConfig
public void setServerConfig(io.ebean.config.DatabaseConfig config)
Set the DatabaseConfig to use. Typically this is not called explicitly.- Specified by:
setServerConfigin interfaceDbMigration
-
setStrictMode
public void setStrictMode(boolean strictMode)
Description copied from interface:DbMigrationSet to false to turn off strict mode.Strict mode checks that a column changed to non-null on an existing table via DB migration has a default value specified. Set this to false if that isn't the case but it is known that all the existing rows have a value specified (there are no existing null values for the column).
- Specified by:
setStrictModein interfaceDbMigration
-
setApplyPrefix
public void setApplyPrefix(String applyPrefix)
Description copied from interface:DbMigrationSet the prefix for the version. Set this to "V" for use with Flyway.- Specified by:
setApplyPrefixin interfaceDbMigration
-
setVersion
public void setVersion(String version)
Description copied from interface:DbMigrationSet the version of the migration to be generated.- Specified by:
setVersionin interfaceDbMigration
-
setName
public void setName(String name)
Description copied from interface:DbMigrationSet the name of the migration to be generated.- Specified by:
setNamein interfaceDbMigration
-
setAddForeignKeySkipCheck
public void setAddForeignKeySkipCheck(boolean addForeignKeySkipCheck)
Description copied from interface:DbMigrationSet to true if ALTER TABLE ADD FOREIGN KEY should be generated with an option to skip validation.Currently this is only useful for Postgres DDL adding the
NOT VALIDoption.- Specified by:
setAddForeignKeySkipCheckin interfaceDbMigration
-
setLockTimeout
public void setLockTimeout(int seconds)
Description copied from interface:DbMigrationSet the lock timeout to be included with the DDL generation.Currently this is only useful for Postgres migrations adding a
set lock_timeoutstatement to the generated database migration.- Specified by:
setLockTimeoutin interfaceDbMigration
-
setGeneratePendingDrop
public void setGeneratePendingDrop(String generatePendingDrop)
Description copied from interface:DbMigrationGenerate a migration for the version specified that contains pending drops.- Specified by:
setGeneratePendingDropin interfaceDbMigration- Parameters:
generatePendingDrop- The version of a prior migration that holds pending drops.
-
setIncludeGeneratedFileComment
public void setIncludeGeneratedFileComment(boolean includeGeneratedFileComment)
Description copied from interface:DbMigrationSet to true to include a generated header comment in the DDL script.- Specified by:
setIncludeGeneratedFileCommentin interfaceDbMigration
-
setIncludeBuiltInPartitioning
public void setIncludeBuiltInPartitioning(boolean includeBuiltInPartitioning)
Description copied from interface:DbMigrationSet this to false to exclude the builtin support for table partitioning (with @DbPartition).- Specified by:
setIncludeBuiltInPartitioningin interfaceDbMigration
-
setHeader
public void setHeader(String header)
Description copied from interface:DbMigrationSet the header that is included in the generated DDL script.- Specified by:
setHeaderin interfaceDbMigration
-
setPlatform
public void setPlatform(io.ebean.annotation.Platform platform)
Set the specific platform to generate DDL for.If not set this defaults to the platform of the default server.
- Specified by:
setPlatformin interfaceDbMigration
-
setPlatform
public void setPlatform(io.ebean.config.dbplatform.DatabasePlatform databasePlatform)
Set the specific platform to generate DDL for.If not set this defaults to the platform of the default server.
- Specified by:
setPlatformin interfaceDbMigration
-
addPlatform
public void addPlatform(io.ebean.annotation.Platform platform, String prefix)
Add an additional platform to write the migration DDL.Use this when you want to generate sql scripts for multiple database platforms from the migration (e.g. generate migration sql for MySql, Postgres and Oracle).
- Specified by:
addPlatformin interfaceDbMigration
-
addDatabasePlatform
public void addDatabasePlatform(io.ebean.config.dbplatform.DatabasePlatform databasePlatform, String prefix)
Description copied from interface:DbMigrationAdd an additional databasePlatform to write the migration DDL.Use this when you want to add preconfigured database platforms.
- Specified by:
addDatabasePlatformin interfaceDbMigration
-
generateMigration
public String generateMigration() throws IOException
Generate the next migration xml file and associated apply and rollback sql scripts.This does not run the migration or ddl scripts but just generates them.
Example: Run for a single specific platform
DbMigration migration = DbMigration.create(); migration.setPathToResources("src/main/resources"); migration.setPlatform(DbPlatformName.ORACLE); migration.generateMigration();Example: Run migration generating DDL for multiple platforms
DbMigration migration = DbMigration.create(); migration.setPathToResources("src/main/resources"); migration.addPlatform(DbPlatformName.POSTGRES, "pg"); migration.addPlatform(DbPlatformName.MYSQL, "mysql"); migration.addPlatform(DbPlatformName.ORACLE, "mysql"); migration.generateMigration();- Specified by:
generateMigrationin interfaceDbMigration- Returns:
- the generated migration or null
- Throws:
IOException
-
generateInitMigration
public String generateInitMigration() throws IOException
Description copied from interface:DbMigrationGenerate an "init" migration which has all changes.An "init" migration can only be executed and used on a database that has had no prior migrations run on it.
- Specified by:
generateInitMigrationin interfaceDbMigration- Returns:
- the version of the generated migration
- Throws:
IOException
-
getPendingDrops
public List<String> getPendingDrops()
Return the versions containing pending drops.- Specified by:
getPendingDropsin interfaceDbMigration
-
setLogToSystemOut
public void setLogToSystemOut(boolean logToSystemOut)
Description copied from interface:DbMigrationSet to false to suppress logging to System out.- Specified by:
setLogToSystemOutin interfaceDbMigration
-
-