ForeignKeyAction
public enum ForeignKeyAction : String
A foreign key action.
-
The
CASCADE
foreign key actionDeclaration
Swift
case cascade = "CASCADE"
-
The
RESTRICT
foreign key actionDeclaration
Swift
case restrict = "RESTRICT"
-
The
SET NULL
foreign key actionDeclaration
Swift
case setNull = "SET NULL"
-
The
SET DEFAULT
foreign key actionDeclaration
Swift
case setDefault = "SET DEFAULT"