axelar-models/macros/create_sps.sql

8 lines
225 B
MySQL
Raw Normal View History

2022-10-06 20:52:26 +00:00
{% macro create_sps() %}
{% if target.database == 'AXELAR' %}
2023-05-19 15:15:10 +00:00
CREATE schema IF NOT EXISTS _internal;
CREATE schema IF NOT EXISTS _datashare;
{{ sp_create_prod_clone('_internal') }};
2022-10-06 20:52:26 +00:00
{% endif %}
2023-05-19 15:15:10 +00:00
{% endmacro %}