AddPrimaryKey

data class AddPrimaryKey(val table: Table, val columnReferences: List<DbIdentifier>, val clustered: Boolean?, val inline: Boolean, var constraintName: DbIdentifier? = null) : ConstraintModelChange(source)

Constructors

Link copied to clipboard
constructor(table: Table, columnReferences: List<DbIdentifier>, clustered: Boolean?, inline: Boolean, constraintName: DbIdentifier? = null)

Types

Link copied to clipboard
class AddPrimaryKeyBuilder(constraintName: DbIdentifier? = null, columns: MutableList<DbIdentifier> = mutableListOf(), clustered: Boolean? = null, inline: Boolean = false) : TableBuilder<AddPrimaryKey.AddPrimaryKeyBuilder, AddPrimaryKey>

Properties

Link copied to clipboard
Link copied to clipboard
val columnReferences: List<DbIdentifier>
Link copied to clipboard
open override var constraintName: DbIdentifier?
Link copied to clipboard
Link copied to clipboard
val table: Table