mirror of
https://github.com/FlipsideCrypto/optimism-models.git
synced 2026-02-06 18:01:47 +00:00
9 lines
363 B
SQL
9 lines
363 B
SQL
{% macro enable_change_tracking() %}
|
|
{% if 'exclude_change_tracking' not in config.get('tags') and var('ENABLE_CHANGE_TRACKING', false) %}
|
|
{% if config.get('materialized') == 'view' %}
|
|
ALTER VIEW {{ this }} SET CHANGE_TRACKING = TRUE;
|
|
{% else %}
|
|
ALTER TABLE {{ this }} SET CHANGE_TRACKING = TRUE;
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endmacro %} |