flow-models/macros/create_sps.sql

6 lines
190 B
MySQL
Raw Permalink Normal View History

2022-04-14 18:34:12 +00:00
{% macro create_sps() %}
{% if target.database == 'FLOW' %}
CREATE SCHEMA IF NOT EXISTS _internal;
{{ sp_create_prod_clone('_internal') }};
{% endif %}
{% endmacro %}