mirror of
https://github.com/FlipsideCrypto/base-models.git
synced 2026-02-06 13:16:53 +00:00
* temp changes for v4 * docs, disabled models and dummy receipts by hash models * removed unused vars * workflows * sources * removed comment for successful compile * package * test project vars * revert * clean up * update dbt project, workflows etc. * update tags for new naming conventions * blank model for overflow * makefile * makefile updates * misc updates for abis * temp source and array index * add scores job * sources update * refs * package * updates * package * package --------- Co-authored-by: Austin <austin@flipsidecrypto.com>
9 lines
262 B
SQL
9 lines
262 B
SQL
{% macro create_udfs() %}
|
|
{% if var("UPDATE_UDFS_AND_SPS", false) %}
|
|
{% set sql %}
|
|
CREATE schema if NOT EXISTS silver;
|
|
{% endset %}
|
|
{% do run_query(sql) %}
|
|
{{- fsc_utils.create_udfs() -}}
|
|
{% endif %}
|
|
{% endmacro %} |