mirror of
https://github.com/FlipsideCrypto/movement-models.git
synced 2026-02-06 15:06:43 +00:00
11 lines
253 B
SQL
11 lines
253 B
SQL
{% macro create_udfs() %}
|
|
{% if var("UPDATE_UDFS_AND_SPS") %}
|
|
{% set sql %}
|
|
CREATE schema if NOT EXISTS silver;
|
|
{{ create_udf_bulk_rest_api_v2() }}
|
|
|
|
{% endset %}
|
|
{% do run_query(sql) %}
|
|
{% endif %}
|
|
{% endmacro %}
|