@Retention(value=RUNTIME)
@Target(value=TYPE)
@Inherited
public @interface KITTY_DATABASE_HELPER
Modifier and Type | Optional Element and Description |
---|---|
java.lang.String |
afterCreateScriptPath
Location of script to apply after creation
|
java.lang.String |
afterMigrateScriptPath
Location of script to apply after migration
|
java.lang.String |
createScriptPath
Location of schema creation script path
|
java.lang.String |
dropScriptPath
Location of drop schema script path
|
java.lang.String |
migrationScriptsPath
Location of databaseClass version migrations scripts
|
boolean |
migrationScriptsStoredInAssets
Location of scripts, file dir or assets dir
|
KITTY_DATABASE_HELPER.UpgradeBehavior |
onUpgradeBehavior
On upgrade behavior
|
public abstract KITTY_DATABASE_HELPER.UpgradeBehavior onUpgradeBehavior
public abstract java.lang.String migrationScriptsPath
public abstract java.lang.String createScriptPath
public abstract java.lang.String dropScriptPath
public abstract java.lang.String afterMigrateScriptPath