> ## Documentation Index
> Fetch the complete documentation index at: https://docs.automate.ax/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# Update table

> Update an Airtable table's metadata or date dependencies.

`airtable.updateTable` changes a table's name, description, or date dependency settings.

```ts automations/rename-airtable-table.automation.ts theme={null}
import { automation } from "automate.ax"
import { airtable } from "automate.ax/airtable"

export default automation("Rename Airtable table", () => {
  airtable.updateTable({ baseId: "app123", table: "tbl123", name: "Customers" })
})
```

`baseId` and table name or ID `table` are required. Supply `name`, `description`, or `dateDependencySettings`. Date dependencies use stable field IDs for the start date, end date, duration, and optional predecessor. Returns the complete updated table schema. Requires `schema.bases:write` and base creator access.
