Skip to content

Commit

Permalink
Merge pull request #1310 from elementary-data/ele-2101-fix-backwards-…
Browse files Browse the repository at this point in the history
…issue-in-cli

change alerts models to sync_all_columns
  • Loading branch information
haritamar authored Dec 3, 2023
2 parents 724bd55 + ca05292 commit 8425675
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion elementary/monitor/dbt_project/models/alerts/alerts.sql
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
materialized = 'incremental',
unique_key = 'alert_id',
merge_update_columns = ['alert_id'],
on_schema_change = 'append_new_columns',
on_schema_change = 'sync_all_columns',
table_type=elementary.get_default_table_type(),
incremental_strategy=elementary.get_default_incremental_strategy()
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
materialized = 'incremental',
unique_key = 'alert_id',
merge_update_columns = ['alert_id'],
on_schema_change = 'append_new_columns',
on_schema_change = 'sync_all_columns',
table_type=elementary.get_default_table_type(),
incremental_strategy=elementary.get_default_incremental_strategy()
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
materialized = 'incremental',
unique_key = 'alert_id',
merge_update_columns = ['alert_id'],
on_schema_change = 'append_new_columns',
on_schema_change = 'sync_all_columns',
table_type=elementary.get_default_table_type(),
incremental_strategy=elementary.get_default_incremental_strategy()
)
Expand Down

0 comments on commit 8425675

Please sign in to comment.