8 lines
225 B
MySQL
8 lines
225 B
MySQL
|
|
{% macro generate_schema_name(custom_schema_name, node) -%}
|
||
|
|
{%- if custom_schema_name is not none -%}
|
||
|
|
{{ custom_schema_name | trim }}
|
||
|
|
{%- else -%}
|
||
|
|
{{ target.schema }}
|
||
|
|
{%- endif -%}
|
||
|
|
{%- endmacro %}
|