DropForeignKeyOperation

View Source

Summary

Operation that drops a table-level foreign key.

Signature

type DropForeignKeyOperation = {
  kind: "dropForeignKey";
  name: string;
  table: TableRef;
};