data-dwh-dbt-project/models/staging/schema.yml

22 lines
565 B
YAML
Raw Normal View History

2024-01-18 14:32:20 +01:00
version: 2
models:
- name: stg_core_user
description: "The staging version of Core's User table. Do not confuse with SuperhogUser."
columns:
- name: id_user
description: "The primary key for this table"
tests:
- unique
- not_null
- name: stg_core_superhog_user
description: "The staging version of Core's SuperhogUser table. Do not confuse with User."
columns:
- name: id_superhoguser
description: "The primary key for this table"
tests:
- unique
- not_null