fix: dbt schema

This commit is contained in:
Stijnvandenbroek
2026-03-04 21:15:58 +00:00
parent 65134183ca
commit 532bb5138a
3 changed files with 11 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
{% macro generate_schema_name(custom_schema_name, node) -%}
{%- if custom_schema_name is none -%}
{{ default_schema }}
{%- else -%}
{{ custom_schema_name | trim }}
{%- endif -%}
{%- endmacro %}