DropTableOperation

View Source

Summary

Operation that drops a table.

Signature

type DropTableOperation = {
  cascade?: boolean;
  ifExists?: boolean;
  kind: "dropTable";
  table: TableRef;
};