mirror of
https://github.com/FlipsideCrypto/solana-models.git
synced 2026-02-06 13:56:50 +00:00
7 lines
189 B
MySQL
7 lines
189 B
MySQL
|
|
{% macro create_sps() %}
|
||
|
|
CREATE SCHEMA IF NOT EXISTS _internal;
|
||
|
|
|
||
|
|
{% if target.database == 'SOLANA' %}
|
||
|
|
{{ sp_create_prod_clone('_internal') }};
|
||
|
|
{% endif %}
|
||
|
|
{% endmacro %}
|