mirror of
https://github.com/FlipsideCrypto/aptos-models.git
synced 2026-02-06 14:22:07 +00:00
7 lines
184 B
SQL
7 lines
184 B
SQL
{% macro create_sps() %}
|
|
{% if target.database == 'aptos' %}
|
|
CREATE schema IF NOT EXISTS _internal;
|
|
{{ sp_create_prod_clone('_internal') }};
|
|
{% endif %}
|
|
{% endmacro %}
|