TableTableConstraints

data class TableTableConstraints(val foreignKeys: List<TableTableConstraintsForeignKey>? = null, val primaryKey: TableTableConstraintsPrimaryKey? = null)

Constructors

Link copied to clipboard
constructor(foreignKeys: List<TableTableConstraintsForeignKey>? = null, primaryKey: TableTableConstraintsPrimaryKey? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Present only if the table has a foreign key. The foreign key is not enforced. Structure is documented below.

Link copied to clipboard

Represents the primary key constraint on a table's columns. Present only if the table has a primary key. The primary key is not enforced. Structure is documented below.