We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7989dfe commit 1462249Copy full SHA for 1462249
models/example/first_dbt_model.sql
@@ -11,9 +11,9 @@
11
12
with source_data as (
13
14
- select 1 as id
+ select 1 as config
15
union all
16
- select null as id
+ select null as config
17
18
)
19
models/example/schema.yml
@@ -5,7 +5,7 @@ models:
5
- name: first_dbt_model
6
description: "A starter dbt model"
7
columns:
8
- - name: id
+ - name: config
9
description: "The primary key for this table"
10
tests:
- unique
@@ -14,7 +14,7 @@ models:
- name: second_dbt_model
20
models/example/second_dbt_model.sql
@@ -3,4 +3,4 @@
3
4
select *
from {{ ref('first_dbt_model') }}
-where id = 1
+where config = 1
0 commit comments