Class FlywaveVerProp
-
- All Implemented Interfaces:
@ConfigurationProperties(value = FlywaveVerProp.Key) public class FlywaveVerProp
set version and journal table for Flywave. - `{{PLAIN_NAME}}` The `plain` table name of the target table - `{{TABLE_NAME}}` Target table name, can be plain, shard, trace table - `{{TABLE_BONE}}` Target table field (at least name, type, comments), without indexes and constraints - `{{TABLE_PKEY}}` The field name in PK of the target table, used to create a normal index copy from the original PK- Since:
2019-05-30
trydofor
-
-
Field Summary
Fields Modifier and Type Field Description public final static StringKeypublic StringschemaVersionTablepublic final static StringKey$schemaVersionTablepublic StringschemaJournalTablepublic final static StringKey$schemaJournalTablepublic Map<String, String>dropRegpublic final static StringKey$dropRegpublic StringjournalInsertpublic final static StringKey$journalInserpublic StringtriggerInsertpublic final static StringKey$triggerInsertpublic StringjournalUpdatepublic final static StringKey$journalUpdatepublic StringtriggerUpdatepublic final static StringKey$triggerUpdatepublic StringjournalDeletepublic final static StringKey$journalDeletepublic StringtriggerDeletepublic final static StringKey$triggerDelete
-
Constructor Summary
Constructors Constructor Description FlywaveVerProp()
-
Method Summary
Modifier and Type Method Description StringgetSchemaVersionTable()table name of schema version. voidsetSchemaVersionTable(String schemaVersionTable)table name of schema version. StringgetSchemaJournalTable()table name of journal. voidsetSchemaJournalTable(String schemaJournalTable)table name of journal. Map<String, String>getDropReg()RegExp is treated as drop statements for dangerous confirm. voidsetDropReg(Map<String, String> dropReg)RegExp is treated as drop statements for dangerous confirm. StringgetJournalInsert()Trace table for AfterInsert (create the original PK index) voidsetJournalInsert(String journalInsert)Trace table for AfterInsert (create the original PK index) StringgetTriggerInsert()AfterInsert Trigger voidsetTriggerInsert(String triggerInsert)AfterInsert Trigger StringgetJournalUpdate()Trace table for AfterUpdate (create the original PK index) voidsetJournalUpdate(String journalUpdate)Trace table for AfterUpdate (create the original PK index) StringgetTriggerUpdate()AfterUpdate Trigger voidsetTriggerUpdate(String triggerUpdate)AfterUpdate Trigger StringgetJournalDelete()Trace table for BeforeDelete (create the original PK index)` voidsetJournalDelete(String journalDelete)Trace table for BeforeDelete (create the original PK index)` StringgetTriggerDelete()BeforeDelete Trigger voidsetTriggerDelete(String triggerDelete)BeforeDelete Trigger booleanequals(@Nullable() Object o)inthashCode()StringtoString()-
-
Method Detail
-
getSchemaVersionTable
String getSchemaVersionTable()
table name of schema version.
-
setSchemaVersionTable
void setSchemaVersionTable(String schemaVersionTable)
table name of schema version.
-
getSchemaJournalTable
String getSchemaJournalTable()
table name of journal.
-
setSchemaJournalTable
void setSchemaJournalTable(String schemaJournalTable)
table name of journal.
-
getDropReg
Map<String, String> getDropReg()
RegExp is treated as drop statements for dangerous confirm.
-
setDropReg
void setDropReg(Map<String, String> dropReg)
RegExp is treated as drop statements for dangerous confirm.
-
getJournalInsert
String getJournalInsert()
Trace table for AfterInsert (create the original PK index)
-
setJournalInsert
void setJournalInsert(String journalInsert)
Trace table for AfterInsert (create the original PK index)
-
getTriggerInsert
String getTriggerInsert()
AfterInsert Trigger
-
setTriggerInsert
void setTriggerInsert(String triggerInsert)
AfterInsert Trigger
-
getJournalUpdate
String getJournalUpdate()
Trace table for AfterUpdate (create the original PK index)
-
setJournalUpdate
void setJournalUpdate(String journalUpdate)
Trace table for AfterUpdate (create the original PK index)
-
getTriggerUpdate
String getTriggerUpdate()
AfterUpdate Trigger
-
setTriggerUpdate
void setTriggerUpdate(String triggerUpdate)
AfterUpdate Trigger
-
getJournalDelete
String getJournalDelete()
Trace table for BeforeDelete (create the original PK index)`
-
setJournalDelete
void setJournalDelete(String journalDelete)
Trace table for BeforeDelete (create the original PK index)`
-
getTriggerDelete
String getTriggerDelete()
BeforeDelete Trigger
-
setTriggerDelete
void setTriggerDelete(String triggerDelete)
BeforeDelete Trigger
-
hashCode
int hashCode()
-
-
-
-