Remix
Remix
remix/data-table · TypeView Source

DropTableOperation

Summary

Operation that drops a table.

Signature

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