ConstraintKind
: string
in package
Represents a column constraint
Table of Contents
Cases
- AUTO_INCREMENT = "AUTO_INCREMENT"
- Represents the AUTO_INCREMENT constraint
- CHECK = "CHECK"
- Represents the CHECK constraint
- FOREIGN_KEY = "FOREIGN KEY"
- Represents the FOREIGN KEY constraint
- NOT_NULL = "NOT NULL"
- Represents the NOT NULL constraint
- PRIMARY_KEY = "PRIMARY KEY"
- Represents the PRIMARY KEY constraint
- SERIAL = "SERIAL"
- Represents the SERIAL constraint
- UNIQUE = "UNIQUE"
- Represents the UNIQUE constraint
Cases
PRIMARY_KEY
Represents the PRIMARY KEY constraint
FOREIGN_KEY
Represents the FOREIGN KEY constraint
UNIQUE
Represents the UNIQUE constraint
NOT_NULL
Represents the NOT NULL constraint
CHECK
Represents the CHECK constraint
SERIAL
Represents the SERIAL constraint
AUTO_INCREMENT
Represents the AUTO_INCREMENT constraint