mirror of
https://github.com/FlipsideCrypto/blast-models.git
synced 2026-02-06 14:26:53 +00:00
* streamline udfs * udfs * streamline models * streamline models * exploded key * create udfs edit * txn history * testnet sources * edits * utils * livequery for chainhead * CTE * secret name path * udfs * coalesce * chainhead table * tbl config * request syntax * core views * mint precise * request structure * Temp changes * new request structure * id * traces structure * traces history * partition key * confirm blocks * workflows * tests and observ * ephit --------- Co-authored-by: Ryan-Loofy <63126328+Ryan-Loofy@users.noreply.github.com>
9 lines
256 B
SQL
9 lines
256 B
SQL
{% macro create_sps() %}
|
|
{% if var("UPDATE_UDFS_AND_SPS") %}
|
|
{% if target.database == 'BLAST' %}
|
|
CREATE schema IF NOT EXISTS _internal;
|
|
{{ sp_create_prod_clone('_internal') }};
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endmacro %}
|