mirror of
https://github.com/FlipsideCrypto/flow-models.git
synced 2026-02-06 15:21:50 +00:00
* deprecation and new view * reorg * is_deprecated * deprecated * upd dbt model tag --------- Co-authored-by: forgash_ <jmfxyz@pm.me>
32 lines
547 B
SQL
32 lines
547 B
SQL
{{ config (
|
|
materialized = 'view',
|
|
tags = ['scheduled']
|
|
) }}
|
|
|
|
WITH labels AS (
|
|
|
|
SELECT
|
|
system_created_at AS _system_created_at,
|
|
insert_date AS _ingested_at,
|
|
blockchain,
|
|
address,
|
|
creator,
|
|
label_type,
|
|
label_subtype,
|
|
address_name,
|
|
project_name,
|
|
_is_deleted,
|
|
labels_combined_id
|
|
FROM
|
|
{{ source(
|
|
'silver_crosschain',
|
|
'labels_combined'
|
|
) }}
|
|
WHERE
|
|
blockchain = 'flow'
|
|
)
|
|
SELECT
|
|
*
|
|
FROM
|
|
labels
|