ForeignKeyAction

View Source

Summary

Referential actions supported by foreign key constraints.

Signature

type ForeignKeyAction =
  | "cascade"
  | "restrict"
  | "set null"
  | "set default"
  | "no action";