Files
dbt-project-evaluator/integration_tests/models/reports/reports.yml
2024-09-03 14:34:31 +02:00

24 lines
501 B
YAML

version: 2
models:
- name: report_1
description: tom cruise's minority report
access: public
config:
materialized: table
columns:
- name: col
description: col me maybe
data_type: boolean
- name: report_2
description: the colbert report
access: public
config:
materialized: table
contract:
enforced: true
columns:
- name: id
data_type: "{{ 'UInt8' if target.type in ['clickhouse'] else 'integer' }}"