mirror of
https://github.com/FlipsideCrypto/movement-models.git
synced 2026-02-06 14:11:45 +00:00
24 lines
447 B
SQL
24 lines
447 B
SQL
{{ config(
|
|
materialized = 'view',
|
|
persist_docs ={ "relation": true, "columns": true },
|
|
tags = ['noncore']
|
|
) }}
|
|
|
|
SELECT
|
|
asset_id,
|
|
symbol,
|
|
NAME,
|
|
decimals,
|
|
blockchain,
|
|
is_deprecated,
|
|
provider,
|
|
source,
|
|
_inserted_timestamp,
|
|
inserted_timestamp,
|
|
modified_timestamp,
|
|
complete_native_asset_metadata_id,
|
|
_invocation_id
|
|
FROM
|
|
{{ ref(
|
|
'bronze__complete_native_asset_metadata'
|
|
) }} |