Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 314 Bytes

README.md

File metadata and controls

20 lines (15 loc) · 314 Bytes

Postgres data models and utilities

dbt models for Postgres databases

Macros

index (source)

This macro creates an index on a given column.

Usage:

{{
config({
    "post-hook": [
      "{{ postgres.index(this, 'id')}}",
    ],
    })
}}