Skip to content

Commit 1462249

Browse files
committed
Column renamed from id to config
1 parent 7989dfe commit 1462249

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

models/example/first_dbt_model.sql

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111

1212
with source_data as (
1313

14-
select 1 as id
14+
select 1 as config
1515
union all
16-
select null as id
16+
select null as config
1717

1818
)
1919

models/example/schema.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ models:
55
- name: first_dbt_model
66
description: "A starter dbt model"
77
columns:
8-
- name: id
8+
- name: config
99
description: "The primary key for this table"
1010
tests:
1111
- unique
@@ -14,7 +14,7 @@ models:
1414
- name: second_dbt_model
1515
description: "A starter dbt model"
1616
columns:
17-
- name: id
17+
- name: config
1818
description: "The primary key for this table"
1919
tests:
2020
- unique

models/example/second_dbt_model.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44
select *
55
from {{ ref('first_dbt_model') }}
6-
where id = 1
6+
where config = 1

0 commit comments

Comments
 (0)