diff --git a/models/bronze/bronze__blocks.sql b/models/bronze/bronze__blocks.sql deleted file mode 100644 index f5aa142..0000000 --- a/models/bronze/bronze__blocks.sql +++ /dev/null @@ -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' diff --git a/models/bronze/bronze__transactions.sql b/models/bronze/bronze__transactions.sql deleted file mode 100644 index 495e032..0000000 --- a/models/bronze/bronze__transactions.sql +++ /dev/null @@ -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'