Specify a storage engine to use with a specific table.
Intended for databases like ClickHouse and MySql that have multiple storage engine options.
@StorageEngine("ENGINE = MergeTree()")
@Entity
public class Orders {
...
}
-
Required Element Summary
Required Elements
-
Element Details
-
value
String valueThe platform specific storage engine clause that would be part of create table statements.
-