mirror of
https://github.com/FlipsideCrypto/bsc-models.git
synced 2026-02-06 17:51:57 +00:00
* added project level variable and associated IF statements to on-run-start macros to default UDF/SP updates to False * deleted unnecessary file
9 lines
254 B
SQL
9 lines
254 B
SQL
{% macro create_sps() %}
|
|
{% if var("UPDATE_UDFS_AND_SPS") %}
|
|
{% if target.database == 'BSC' %}
|
|
CREATE schema IF NOT EXISTS _internal;
|
|
{{ sp_create_prod_clone('_internal') }};
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endmacro %}
|