|
|
@ -53,6 +53,26 @@ public class LiquibaseProperties {
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
private String defaultSchema;
|
|
|
|
private String defaultSchema;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* Schema to use for Liquibase objects.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
private String liquibaseSchema;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* Tablespace to use for Liquibase objects.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
private String liquibaseTablespace;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* Name of table to use for tracking change history.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
private String databaseChangeLogTable;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* Name of table to use for tracking concurrent Liquibase usage.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
private String databaseChangeLogLockTable;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Whether to first drop the database schema.
|
|
|
|
* Whether to first drop the database schema.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
@ -132,6 +152,38 @@ public class LiquibaseProperties {
|
|
|
|
this.defaultSchema = defaultSchema;
|
|
|
|
this.defaultSchema = defaultSchema;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getLiquibaseSchema() {
|
|
|
|
|
|
|
|
return this.liquibaseSchema;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setLiquibaseSchema(String liquibaseSchema) {
|
|
|
|
|
|
|
|
this.liquibaseSchema = liquibaseSchema;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getLiquibaseTablespace() {
|
|
|
|
|
|
|
|
return this.liquibaseTablespace;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setLiquibaseTablespace(String liquibaseTablespace) {
|
|
|
|
|
|
|
|
this.liquibaseTablespace = liquibaseTablespace;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getDatabaseChangeLogTable() {
|
|
|
|
|
|
|
|
return this.databaseChangeLogTable;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setDatabaseChangeLogTable(String databaseChangeLogTable) {
|
|
|
|
|
|
|
|
this.databaseChangeLogTable = databaseChangeLogTable;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getDatabaseChangeLogLockTable() {
|
|
|
|
|
|
|
|
return this.databaseChangeLogLockTable;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setDatabaseChangeLogLockTable(String databaseChangeLogLockTable) {
|
|
|
|
|
|
|
|
this.databaseChangeLogLockTable = databaseChangeLogLockTable;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public boolean isDropFirst() {
|
|
|
|
public boolean isDropFirst() {
|
|
|
|
return this.dropFirst;
|
|
|
|
return this.dropFirst;
|
|
|
|
}
|
|
|
|
}
|
|
|
|