|
|
|
@ -74,6 +74,13 @@ public class FlywayProperties {
|
|
|
|
|
*/
|
|
|
|
|
private String table = "flyway_schema_history";
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Tablespace in which the schema history table is created. Ignored when using a
|
|
|
|
|
* database that does not support tablespaces. Defaults to the default tablespace of
|
|
|
|
|
* the connection used by Flyway.
|
|
|
|
|
*/
|
|
|
|
|
private String tablespace;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Description to tag an existing schema with when applying a baseline.
|
|
|
|
|
*/
|
|
|
|
@ -252,6 +259,12 @@ public class FlywayProperties {
|
|
|
|
|
*/
|
|
|
|
|
private Boolean oracleSqlplus;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Whether to issue a warning rather than an error when a not-yet-supported Oracle
|
|
|
|
|
* SQL*Plus statement is encountered. Requires Flyway Pro or Flyway Enterprise.
|
|
|
|
|
*/
|
|
|
|
|
private Boolean oracleSqlplusWarn;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Whether to stream SQL migrations when executing them. Requires Flyway Pro or Flyway
|
|
|
|
|
* Enterprise.
|
|
|
|
@ -319,6 +332,14 @@ public class FlywayProperties {
|
|
|
|
|
this.table = table;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getTablespace() {
|
|
|
|
|
return this.tablespace;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setTablespace(String tablespace) {
|
|
|
|
|
this.tablespace = tablespace;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getBaselineDescription() {
|
|
|
|
|
return this.baselineDescription;
|
|
|
|
|
}
|
|
|
|
@ -595,6 +616,14 @@ public class FlywayProperties {
|
|
|
|
|
this.oracleSqlplus = oracleSqlplus;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Boolean getOracleSqlplusWarn() {
|
|
|
|
|
return this.oracleSqlplusWarn;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setOracleSqlplusWarn(Boolean oracleSqlplusWarn) {
|
|
|
|
|
this.oracleSqlplusWarn = oracleSqlplusWarn;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Boolean getStream() {
|
|
|
|
|
return this.stream;
|
|
|
|
|
}
|
|
|
|
|