2022-03-22 04:03:52 +00:00
|
|
|
{{ config(
|
|
|
|
indexes = [{'columns':['_airbyte_emitted_at'],'type':'btree'}],
|
|
|
|
unique_key = '_airbyte_ab_id',
|
|
|
|
schema = "_airbyte_unibag",
|
|
|
|
tags = [ "top-level-intermediate" ]
|
|
|
|
) }}
|
|
|
|
-- SQL model to build a hash column based on the values of this record
|
|
|
|
-- depends_on: {{ ref('team_members_ab2') }}
|
|
|
|
select
|
|
|
|
{{ dbt_utils.surrogate_key([
|
|
|
|
'_id',
|
|
|
|
adapter.quote('role'),
|
|
|
|
'team',
|
|
|
|
adapter.quote('user'),
|
|
|
|
boolean_to_string('isleft'),
|
|
|
|
'leftat',
|
|
|
|
'joinedat',
|
|
|
|
'rolecode',
|
|
|
|
'createdat',
|
2022-05-10 14:30:53 +00:00
|
|
|
object_to_string('statistic'),
|
2022-03-22 04:03:52 +00:00
|
|
|
'updatedat',
|
|
|
|
'isremovedby',
|
|
|
|
'searchstring',
|
2022-05-10 14:30:53 +00:00
|
|
|
object_to_string('statisticmonth'),
|
2022-03-22 04:03:52 +00:00
|
|
|
]) }} as _airbyte_team_members_hashid,
|
|
|
|
tmp.*
|
|
|
|
from {{ ref('team_members_ab2') }} tmp
|
|
|
|
-- team_members
|
|
|
|
where 1 = 1
|
|
|
|
|