diff --git a/models/staging/stg_account_signers.yml b/models/staging/stg_account_signers.yml index ee92d47..8fbb95c 100644 --- a/models/staging/stg_account_signers.yml +++ b/models/staging/stg_account_signers.yml @@ -7,6 +7,8 @@ models: datepart: hour field: cast(closed_at as timestamp) interval: '{{ 1 if target.name == "prod" else 24 }}' + config: + enabled: '{{ target.name != "jenkins" }}' meta: description: "Monitors the freshness of your table over time, as the expected time between data updates." - incremental_unique_combination_of_columns: diff --git a/models/staging/stg_accounts.yml b/models/staging/stg_accounts.yml index b12fe0e..18315a1 100644 --- a/models/staging/stg_accounts.yml +++ b/models/staging/stg_accounts.yml @@ -7,6 +7,8 @@ models: datepart: hour field: cast(closed_at as timestamp) interval: '{{ 1 if target.name == "prod" else 24 }}' + config: + enabled: '{{ target.name != "jenkins" }}' meta: description: "Monitors the freshness of your table over time, as the expected time between data updates." - incremental_unique_combination_of_columns: diff --git a/models/staging/stg_claimable_balances.yml b/models/staging/stg_claimable_balances.yml index fc19ab1..3055f3e 100644 --- a/models/staging/stg_claimable_balances.yml +++ b/models/staging/stg_claimable_balances.yml @@ -7,6 +7,8 @@ models: datepart: hour field: cast(closed_at as timestamp) interval: '{{ 1 if target.name == "prod" else 24 }}' + config: + enabled: '{{ target.name != "jenkins" }}' meta: description: "Monitors the freshness of your table over time, as the expected time between data updates." - incremental_unique_combination_of_columns: diff --git a/models/staging/stg_contract_data.yml b/models/staging/stg_contract_data.yml index c1aa3a0..e906178 100644 --- a/models/staging/stg_contract_data.yml +++ b/models/staging/stg_contract_data.yml @@ -7,6 +7,8 @@ models: datepart: hour field: cast(closed_at as timestamp) interval: '{{ 1 if target.name == "prod" else 24 }}' + config: + enabled: '{{ target.name != "jenkins" }}' meta: description: "Monitors the freshness of your table over time, as the expected time between data updates." - incremental_unique_combination_of_columns: diff --git a/models/staging/stg_history_assets.yml b/models/staging/stg_history_assets.yml index 1c248df..9d020bb 100644 --- a/models/staging/stg_history_assets.yml +++ b/models/staging/stg_history_assets.yml @@ -7,6 +7,8 @@ models: datepart: hour field: cast(closed_at as timestamp) interval: '{{ 3 if target.name == "prod" else 24 }}' + config: + enabled: '{{ target.name != "jenkins" }}' meta: description: "Monitors the freshness of your table over time, as the expected time between data updates." - incremental_unique_combination_of_columns: diff --git a/models/staging/stg_history_effects.yml b/models/staging/stg_history_effects.yml index f51e47a..74b834d 100644 --- a/models/staging/stg_history_effects.yml +++ b/models/staging/stg_history_effects.yml @@ -7,6 +7,8 @@ models: datepart: hour field: cast(closed_at as timestamp) interval: '{{ 1 if target.name == "prod" else 24 }}' + config: + enabled: '{{ target.name != "jenkins" }}' meta: description: "Monitors the freshness of your table over time, as the expected time between data updates." columns: diff --git a/models/staging/stg_history_ledgers.yml b/models/staging/stg_history_ledgers.yml index 5aafd9a..6e69960 100644 --- a/models/staging/stg_history_ledgers.yml +++ b/models/staging/stg_history_ledgers.yml @@ -7,6 +7,8 @@ models: datepart: hour field: cast(closed_at as timestamp) interval: '{{ 1 if target.name == "prod" else 24 }}' + config: + enabled: '{{ target.name != "jenkins" }}' meta: description: "Monitors the freshness of your table over time, as the expected time between data updates." columns: diff --git a/models/staging/stg_history_operations.yml b/models/staging/stg_history_operations.yml index 4226224..5470b41 100644 --- a/models/staging/stg_history_operations.yml +++ b/models/staging/stg_history_operations.yml @@ -7,6 +7,8 @@ models: datepart: hour field: cast(closed_at as timestamp) interval: '{{ 1 if target.name == "prod" else 24 }}' + config: + enabled: '{{ target.name != "jenkins" }}' meta: description: "Monitors the freshness of your table over time, as the expected time between data updates." columns: diff --git a/models/staging/stg_history_trades.yml b/models/staging/stg_history_trades.yml index 23fec32..6f19450 100644 --- a/models/staging/stg_history_trades.yml +++ b/models/staging/stg_history_trades.yml @@ -7,6 +7,8 @@ models: datepart: hour field: cast(ledger_closed_at as timestamp) interval: '{{ 1 if target.name == "prod" else 24 }}' + config: + enabled: '{{ target.name != "jenkins" }}' meta: description: "Monitors the freshness of your table over time, as the expected time between data updates." - incremental_unique_combination_of_columns: diff --git a/models/staging/stg_history_transactions.yml b/models/staging/stg_history_transactions.yml index 6505cc8..0589dff 100644 --- a/models/staging/stg_history_transactions.yml +++ b/models/staging/stg_history_transactions.yml @@ -7,6 +7,8 @@ models: datepart: hour field: cast(closed_at as timestamp) interval: '{{ 1 if target.name == "prod" else 24 }}' + config: + enabled: '{{ target.name != "jenkins" }}' meta: description: "Monitors the freshness of your table over time, as the expected time between data updates." columns: diff --git a/models/staging/stg_liquidity_pools.yml b/models/staging/stg_liquidity_pools.yml index 7eb7327..2139f08 100644 --- a/models/staging/stg_liquidity_pools.yml +++ b/models/staging/stg_liquidity_pools.yml @@ -7,6 +7,8 @@ models: datepart: hour field: cast(closed_at as timestamp) interval: '{{ 1 if target.name == "prod" else 24 }}' + config: + enabled: '{{ target.name != "jenkins" }}' meta: description: "Monitors the freshness of your table over time, as the expected time between data updates." - incremental_unique_combination_of_columns: diff --git a/models/staging/stg_offers.yml b/models/staging/stg_offers.yml index c6b0a6c..a635e87 100644 --- a/models/staging/stg_offers.yml +++ b/models/staging/stg_offers.yml @@ -7,6 +7,8 @@ models: datepart: hour field: cast(closed_at as timestamp) interval: '{{ 1 if target.name == "prod" else 24 }}' + config: + enabled: '{{ target.name != "jenkins" }}' meta: description: "Monitors the freshness of your table over time, as the expected time between data updates." - incremental_unique_combination_of_columns: diff --git a/models/staging/stg_trust_lines.yml b/models/staging/stg_trust_lines.yml index be49ab3..68f9a57 100644 --- a/models/staging/stg_trust_lines.yml +++ b/models/staging/stg_trust_lines.yml @@ -7,6 +7,8 @@ models: datepart: hour field: cast(closed_at as timestamp) interval: '{{ 1 if target.name == "prod" else 24 }}' + config: + enabled: '{{ target.name != "jenkins" }}' meta: description: "Monitors the freshness of your table over time, as the expected time between data updates." - incremental_unique_combination_of_columns: diff --git a/models/staging/stg_ttl.yml b/models/staging/stg_ttl.yml index 2f3148b..63d51c6 100644 --- a/models/staging/stg_ttl.yml +++ b/models/staging/stg_ttl.yml @@ -7,6 +7,8 @@ models: datepart: hour field: cast(closed_at as timestamp) interval: '{{ 1 if target.name == "prod" else 24 }}' + config: + enabled: '{{ target.name != "jenkins" }}' meta: description: "Monitors the freshness of your table over time, as the expected time between data updates." - incremental_unique_combination_of_columns: