data-dwh-dbt-project/models/example/schema.yml
2024-01-18 11:24:35 +01:00

21 lines
437 B
YAML

version: 2
models:
- name: my_first_dbt_model
description: "A starter dbt model"
columns:
- name: id
description: "The primary key for this table"
tests:
- unique
- not_null
- name: my_second_dbt_model
description: "A starter dbt model"
columns:
- name: id
description: "The primary key for this table"
tests:
- unique
- not_null