Files
mars-elt/dbt/models/example/schema.yml
Grzegorz Michalski 2c225d68ac init
2026-03-02 09:47:35 +01:00

22 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