Skip to content

Commit

Permalink
Fix model for source column desc
Browse files Browse the repository at this point in the history
  • Loading branch information
b-per committed Jul 1, 2024
1 parent fa8530e commit 21ce1da
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions models/staging/graph/base/base_source_columns.sql
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ select
cast(null as {{ dbt.type_string()}}) as name,
cast(null as {{ dbt_project_evaluator.type_large_string()}}) as description,
cast(null as {{ dbt.type_string()}}) as data_type,
cast(null as {{ dbt.type_string()}}) as constraints,
cast(True as boolean) as has_not_null_constraint,
cast(0 as {{ dbt.type_int() }}) as constraints_count,
cast(null as {{ dbt.type_string()}}) as quote

from dummy_cte
Expand Down

0 comments on commit 21ce1da

Please sign in to comment.