rename gold view before release

This commit is contained in:
forgash_ 2023-11-13 15:34:23 -07:00
parent cf8f49e478
commit feffbcd39d
4 changed files with 7 additions and 7 deletions

View File

@ -4,7 +4,7 @@
) }}
SELECT
atlas_near_maa_id AS fact_near_maas_id,
atlas_maa_id AS fact_maas_id,
day,
maa,
new_maas,
@ -12,4 +12,4 @@ SELECT
inserted_timestamp,
modified_timestamp
FROM
{{ ref('silver__atlas_near_maa') }}
{{ ref('silver__atlas_maa') }}

View File

@ -1,12 +1,12 @@
version: 2
models:
- name: atlas__fact_near_maas
- name: atlas__fact_maas
description: |-
Monthly Active Accounts (wallets) on NEAR, including new and returning wallets, calculated over a rolling 30 day window. An active account, here, is defined as the signing of at least one transaction.
columns:
- name: fact_near_maas_id
- name: fact_maas_id
description: "{{ doc('id') }}"
tests:
- not_null

View File

@ -97,7 +97,7 @@ FINAL AS (
SELECT
{{ dbt_utils.generate_surrogate_key(
['day']
) }} AS atlas_near_maa_id,
) }} AS atlas_maa_id,
day,
maa,
new_maas,

View File

@ -1,12 +1,12 @@
version: 2
models:
- name: silver__atlas_near_maa
- name: silver__atlas_maa
description: |-
Monthly Active Accounts (wallets) on NEAR, including new and returning wallets, calculated over a rolling 30 day window. An active account, here, is defined as the signing of at least one transaction.
columns:
- name: atlas_near_maa_id
- name: atlas_maa_id
description: "{{ doc('id') }}"
tests:
- not_null