berachain-models/macros/create_sps.sql

9 lines
260 B
MySQL
Raw Permalink Normal View History

2024-05-21 17:29:49 +00:00
{% macro create_sps() %}
{% if var("UPDATE_UDFS_AND_SPS") %}
{% if target.database == 'BERACHAIN' %}
CREATE schema IF NOT EXISTS _internal;
{{ sp_create_prod_clone('_internal') }};
{% endif %}
{% endif %}
{% endmacro %}