rm old bronze views (#478)

This commit is contained in:
Jack Forgash 2025-09-08 17:17:30 -04:00 committed by GitHub
parent 6bc260c838
commit 7341100552
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 0 additions and 47 deletions

View File

@ -1,23 +0,0 @@
{{ config (
materialized = 'view',
tags = ['scheduled']
) }}
SELECT
record_id,
offset_id,
block_id,
block_timestamp,
network,
chain_id,
tx_count,
header,
ingested_at AS _ingested_at,
_inserted_timestamp
FROM
{{ source(
'prod',
'flow_blocks'
) }}
WHERE
_inserted_timestamp :: DATE >= '2022-05-01'

View File

@ -1,24 +0,0 @@
{{ config (
materialized = 'view',
tags = ['scheduled']
) }}
SELECT
record_id,
tx_id,
tx_block_index,
offset_id,
block_id,
block_timestamp,
network,
chain_id,
tx,
ingested_at AS _ingested_at,
_inserted_timestamp
FROM
{{ source(
'prod',
'flow_txs'
) }}
WHERE
_inserted_timestamp :: DATE >= '2022-05-01'