AlterTableOperation

View Source

Summary

Operation that applies one or more table changes.

Signature

type AlterTableOperation = {
  changes: AlterTableChange[];
  ifExists?: boolean;
  kind: "alterTable";
  table: TableRef;
};