Class DbTriggerUpdate
- java.lang.Object
-
- io.ebeaninternal.dbmigration.ddlgeneration.platform.DbTriggerUpdate
-
public class DbTriggerUpdate extends Object
DB trigger update when a change occurs on a table with history.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DdlBufferdropDependencyBuffer()Return the appropriate drop dependency buffer for the current mode.StringgetBaseTable()Return the base table name.List<String>getColumns()Return the included columns.StringgetHistoryTable()Return the history table name.DdlBufferhistoryTriggerBuffer()Return the appropriate buffer for the current mode.DdlBufferhistoryViewBuffer()Return the appropriate buffer for the current mode.
-
-
-
Method Detail
-
historyViewBuffer
public DdlBuffer historyViewBuffer()
Return the appropriate buffer for the current mode.
-
historyTriggerBuffer
public DdlBuffer historyTriggerBuffer()
Return the appropriate buffer for the current mode.
-
dropDependencyBuffer
public DdlBuffer dropDependencyBuffer()
Return the appropriate drop dependency buffer for the current mode.
-
getBaseTable
public String getBaseTable()
Return the base table name.
-
getHistoryTable
public String getHistoryTable()
Return the history table name.
-
getColumns
public List<String> getColumns()
Return the included columns.
-
-