CreateIndex

data class CreateIndex(val table: Table, val columnReferences: List<DbIdentifier>, val clustered: Boolean, val unique: Boolean, val indexName: DbIdentifier?, val tablespace: Tablespace?) : ModelChange(source)

Constructors

Link copied to clipboard
constructor(table: Table, columnReferences: List<DbIdentifier>, clustered: Boolean, unique: Boolean, indexName: DbIdentifier?, tablespace: Tablespace?)

Types

Link copied to clipboard
class CreateIndexBuilder(indexName: DbIdentifier? = null, tablespace: String? = null, clustered: Boolean = false, unique: Boolean = false, columns: MutableList<DbIdentifier> = mutableListOf()) : TableBuilder<CreateIndex.CreateIndexBuilder, CreateIndex>

Properties

Link copied to clipboard
Link copied to clipboard
val columnReferences: List<DbIdentifier>
Link copied to clipboard
val indexName: DbIdentifier?
Link copied to clipboard
val table: Table
Link copied to clipboard
val tablespace: Tablespace?
Link copied to clipboard