Skip to content

Commit

Permalink
complete deprecation (#343)
Browse files Browse the repository at this point in the history
  • Loading branch information
austinFlipside authored Feb 19, 2024
1 parent 737b4d8 commit 6255bd8
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 99 deletions.
26 changes: 0 additions & 26 deletions models/gold/core/core__ez_matic_transfers.sql

This file was deleted.

51 changes: 0 additions & 51 deletions models/gold/core/core__ez_matic_transfers.yml

This file was deleted.

5 changes: 1 addition & 4 deletions models/gold/core/core__fact_traces.sql
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,6 @@ SELECT
COALESCE(
modified_timestamp,
'2000-01-01'
) AS modified_timestamp,
matic_value,
matic_value_precise_raw,
matic_value_precise
) AS modified_timestamp
FROM
{{ ref('silver__traces') }}
8 changes: 1 addition & 7 deletions models/gold/core/core__fact_traces.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: 2
models:
- name: core__fact_traces
description: 'Deprecating soon! The columns `MATIC_VALUE`, `MATIC_VALUE_PRECISE_RAW` and `MATIC_VALUE_PRECISE` will be deprecated on February 14, 2024. Please migrate to `VALUE`, `VALUE_PRECISE_RAW` and `VALUE_PRECISE`. Note: These columns are the ONLY changes being made to this table.'
description: '{{ doc("poly_traces_table_doc") }}'

columns:
- name: BLOCK_NUMBER
Expand All @@ -14,12 +14,6 @@ models:
description: '{{ doc("poly_traces_from") }}'
- name: TO_ADDRESS
description: '{{ doc("poly_traces_to") }}'
- name: MATIC_VALUE
description: '{{ doc("amount_deprecation") }}'
- name: MATIC_VALUE_PRECISE_RAW
description: '{{ doc("amount_deprecation") }}'
- name: MATIC_VALUE_PRECISE
description: '{{ doc("amount_deprecation") }}'
- name: VALUE
description: '{{ doc("poly_traces_value") }}'
- name: VALUE_PRECISE_RAW
Expand Down
5 changes: 1 addition & 4 deletions models/gold/core/core__fact_transactions.sql
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,6 @@ SELECT
COALESCE(
modified_timestamp,
'2000-01-01'
) AS modified_timestamp,
VALUE AS matic_value,
value_precise_raw AS matic_value_precise_raw,
value_precise AS matic_value_precise
) AS modified_timestamp
FROM
{{ ref('silver__transactions') }}
8 changes: 1 addition & 7 deletions models/gold/core/core__fact_transactions.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: 2
models:
- name: core__fact_transactions
description: 'Deprecating soon! The columns `MATIC_VALUE`, `MATIC_VALUE_PRECISE_RAW` and `MATIC_VALUE_PRECISE` will be deprecated on February 14, 2024. Please migrate to `VALUE`, `VALUE_PRECISE_RAW` and `VALUE_PRECISE`. Note: These columns are the ONLY changes being made to this table.'
description: '{{ doc("poly_tx_table_doc") }}'

columns:
- name: BLOCK_NUMBER
Expand All @@ -20,12 +20,6 @@ models:
description: '{{ doc("poly_from_address") }}'
- name: TO_ADDRESS
description: '{{ doc("poly_to_address") }}'
- name: MATIC_VALUE
description: '{{ doc("amount_deprecation") }}'
- name: MATIC_VALUE_PRECISE_RAW
description: '{{ doc("amount_deprecation") }}'
- name: MATIC_VALUE_PRECISE
description: '{{ doc("amount_deprecation") }}'
- name: VALUE
description: '{{ doc("poly_value") }}'
- name: VALUE_PRECISE_RAW
Expand Down

0 comments on commit 6255bd8

Please sign in to comment.