movement-models/macros/create_sps.sql
Mike Stepanovic 418e4cfca0 repo init
2025-03-05 12:51:20 -07:00

7 lines
187 B
SQL

{% macro create_sps() %}
{% if target.database == 'MOVEMENT' %}
CREATE schema IF NOT EXISTS _internal;
{{ sp_create_prod_clone('_internal') }};
{% endif %}
{% endmacro %}