Remix
Remix
remix/data-table · TypeView Source

AlterTableOperation

Summary

Operation that applies one or more table changes.

Signature

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