DropIndexOperation

View Source

Summary

Operation that drops an index.

Signature

type DropIndexOperation = {
  ifExists?: boolean;
  kind: "dropIndex";
  name: string;
  table: TableRef;
};