Files
data-platform/dbt/macros/generate_schema_name.sql
Stijnvandenbroek 532bb5138a fix: dbt schema
2026-03-04 21:15:58 +00:00

8 lines
222 B
SQL

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