DropCheckOperation

View Source

Summary

Operation that drops a table-level check constraint.

Signature

type DropCheckOperation = {
  kind: "dropCheck";
  name: string;
  table: TableRef;
};