mirror of
https://github.com/FlipsideCrypto/kaia-models.git
synced 2026-02-06 15:56:48 +00:00
9 lines
255 B
MySQL
9 lines
255 B
MySQL
|
|
{% macro create_sps() %}
|
||
|
|
{% if var("UPDATE_UDFS_AND_SPS") %}
|
||
|
|
{% if target.database == 'KAIA' %}
|
||
|
|
CREATE schema IF NOT EXISTS _internal;
|
||
|
|
{{ sp_create_prod_clone('_internal') }};
|
||
|
|
{% endif %}
|
||
|
|
{% endif %}
|
||
|
|
{% endmacro %}
|