diff --git a/website/docs/reference/resource-configs/postgres-configs.md b/website/docs/reference/resource-configs/postgres-configs.md index de084f9eb02..e230641c37a 100644 --- a/website/docs/reference/resource-configs/postgres-configs.md +++ b/website/docs/reference/resource-configs/postgres-configs.md @@ -111,10 +111,10 @@ models: The Postgres adapter supports [materialized views](https://www.postgresql.org/docs/current/rules-materializedviews.html) with the following configuration parameters: -| Parameter | Type | Required | Default | Change Monitoring Support | -|-------------------------|------------------|----------|---------|---------------------------| -| `on_configuration_change` | | no | `apply` | n/a | -| [indexes](#indexes) | [{}] | no | `none` | alter | +| Parameter | Type | Required | Default | Change Monitoring Support | +|---------------------------|--------------|----------|---------|---------------------------| +| `on_configuration_change` | | no | `apply` | n/a | +| [indexes](#indexes) | | no | `none` | alter | The `indexes` parameter corresponds to that of a table, as linked above. It's worth noting that, unlike with tables, dbt will monitor this parameter for changes and apply the changes without dropping the materialized view. @@ -123,7 +123,7 @@ This happens via a `DROP/CREATE` of the indexes, which could be thought of as a Find more information about materialized view parameters in the Postgres docs: - [CREATE MATERIALIZED VIEW](https://www.postgresql.org/docs/current/sql-creatematerializedview.html) - + ### Limitations