mirror of
https://github.com/dbt-labs/dbt-project-evaluator.git
synced 2025-12-18 02:11:27 +00:00
define column types in yml file
This commit is contained in:
@@ -1,2 +1 @@
|
||||
fct_name,column_name,id_to_exclude,comment
|
||||
"","","",""
|
||||
fct_name,column_name,id_to_exclude,comment
|
||||
|
10
seeds/seeds.yml
Normal file
10
seeds/seeds.yml
Normal file
@@ -0,0 +1,10 @@
|
||||
version: 2
|
||||
|
||||
seeds:
|
||||
- name: dbt_project_evaluator_exceptions
|
||||
config:
|
||||
column_types:
|
||||
fct_name: "{{ 'varchar' if target.type in ['redshift', 'postgres', 'snowflake'] else 'string' }}"
|
||||
column_name: "{{ 'varchar' if target.type in ['redshift', 'postgres', 'snowflake'] else 'string' }}"
|
||||
id_to_exclude: "{{ 'varchar' if target.type in ['redshift', 'postgres', 'snowflake'] else 'string' }}"
|
||||
comment: "{{ 'varchar' if target.type in ['redshift', 'postgres', 'snowflake'] else 'string' }}"
|
||||
Reference in New Issue
Block a user