mirror of
https://github.com/FlipsideCrypto/flow-models.git
synced 2026-02-06 15:36:43 +00:00
7 lines
202 B
MySQL
7 lines
202 B
MySQL
|
|
{% macro create_tasks() %}
|
||
|
|
{% if target.database == 'FLOW' %}
|
||
|
|
CREATE SCHEMA IF NOT EXISTS _internal;
|
||
|
|
{{ task_run_sp_create_prod_clone('_internal') }};
|
||
|
|
{% endif %}
|
||
|
|
|
||
|
|
{% endmacro %}
|