mirror of
https://github.com/FlipsideCrypto/external-models.git
synced 2026-02-06 15:21:52 +00:00
34 lines
556 B
SQL
34 lines
556 B
SQL
{{ config(
|
|
materialized = 'incremental',
|
|
unique_key = 'space_id',
|
|
incremental_strategy = 'delete+insert',
|
|
tags = ['snapshot']
|
|
) }}
|
|
|
|
SELECT
|
|
space_id,
|
|
SPACE,
|
|
about,
|
|
symbol,
|
|
network,
|
|
categories,
|
|
domain,
|
|
is_private,
|
|
is_verified,
|
|
admins,
|
|
members,
|
|
treasuries,
|
|
_inserted_timestamp
|
|
FROM
|
|
{{ ref('bronze__snapshot_spaces') }}
|
|
|
|
{% if is_incremental() %}
|
|
WHERE
|
|
_inserted_timestamp >= (
|
|
SELECT
|
|
MAX(_inserted_timestamp)
|
|
FROM
|
|
{{ this }}
|
|
)
|
|
{% endif %}
|