DropColumnChange

View Source

Summary

Alter-table change that drops a column.

Signature

type DropColumnChange = {
  column: string;
  ifExists?: boolean;
  kind: "dropColumn";
};