This commit is contained in:
2025-03-13 12:11:55 +02:00
commit ad530b133f
15 changed files with 240 additions and 0 deletions

21
models/example/schema.yml Normal file
View File

@@ -0,0 +1,21 @@
version: 2
models:
- name: my_first_dbt_model
description: "A starter dbt model"
columns:
- name: id
description: "The primary key for this table"
data_tests:
- unique
- not_null
- name: my_second_dbt_model
description: "A starter dbt model"
columns:
- name: id
description: "The primary key for this table"
data_tests:
- unique
- not_null