mirror of
https://github.com/FlipsideCrypto/flow-models.git
synced 2026-02-06 13:06:59 +00:00
25 lines
371 B
SQL
25 lines
371 B
SQL
{{ config(
|
|
materialized = 'table',
|
|
cluster_by = ['address'],
|
|
unique_key = 'event_id',
|
|
) }}
|
|
|
|
WITH labels AS (
|
|
|
|
SELECT
|
|
_ingested_at,
|
|
blockchain,
|
|
address,
|
|
creator,
|
|
label_type,
|
|
label_subtype,
|
|
address_name,
|
|
project_name
|
|
FROM
|
|
{{ ref('bronze__labels') }}
|
|
)
|
|
SELECT
|
|
*
|
|
FROM
|
|
labels
|