movement-models/macros/create_sps.sql

7 lines
187 B
MySQL
Raw Normal View History

2025-03-05 19:51:20 +00:00
{% macro create_sps() %}
{% if target.database == 'MOVEMENT' %}
CREATE schema IF NOT EXISTS _internal;
{{ sp_create_prod_clone('_internal') }};
{% endif %}
{% endmacro %}