change tracking

This commit is contained in:
drethereum 2025-07-24 09:23:07 -06:00
parent a22a4fbff3
commit 1a77ece09b

View File

@ -72,6 +72,16 @@ models:
+enabled: true
core:
+enabled: true # enable subpackages, as needed
gold:
+enabled: true
+post-hook: >
{% if 'exclude_change_tracking' not in config.get('tags') %}
{% if config.get('materialized') == 'view' %}
ALTER VIEW {{ this }} SET CHANGE_TRACKING = TRUE;
{% else %}
ALTER TABLE {{ this }} SET CHANGE_TRACKING = TRUE;
{% endif %}
{% endif %}
bronze:
+enabled: false
github_actions: