mirror of
https://github.com/FlipsideCrypto/movement-models.git
synced 2026-02-06 13:51:46 +00:00
11 lines
250 B
MySQL
11 lines
250 B
MySQL
|
|
{% macro run_sp_create_prod_clone() %}
|
||
|
|
{% set clone_query %}
|
||
|
|
call movement._internal.create_prod_clone(
|
||
|
|
'movement',
|
||
|
|
'movement_dev',
|
||
|
|
'internal_dev'
|
||
|
|
);
|
||
|
|
{% endset %}
|
||
|
|
{% do run_query(clone_query) %}
|
||
|
|
{% endmacro %}
|