dbt-selly/models/generated/airbyte_ctes/unibag/users_ab2.sql

42 lines
1.9 KiB
SQL

{{ config(
indexes = [{'columns':['_airbyte_emitted_at'],'type':'btree'}],
unique_key = '_airbyte_ab_id',
schema = "_airbyte_unibag",
tags = [ "top-level-intermediate" ]
) }}
-- SQL model to cast each column to its adequate SQL type converted from the JSON schema type
-- depends_on: {{ ref('users_ab1') }}
select
cast(_id as {{ dbt_utils.type_string() }}) as _id,
cast(code as {{ dbt_utils.type_string() }}) as code,
cast(info as {{ type_json() }}) as info,
cast({{ adapter.quote('name') }} as {{ dbt_utils.type_string() }}) as {{ adapter.quote('name') }},
cast(team as {{ type_json() }}) as team,
cast(zalo as {{ type_json() }}) as zalo,
cast(email as {{ type_json() }}) as email,
cast(phone as {{ type_json() }}) as phone,
cast(avatar as {{ type_json() }}) as avatar,
{{ cast_to_boolean('banned') }} as banned,
cast(segment as {{ dbt_utils.type_string() }}) as segment,
cast(facebook as {{ type_json() }}) as facebook,
{{ cast_to_boolean('hasorder') }} as hasorder,
cast(referral as {{ type_json() }}) as referral,
segments,
cast(createdat as {{ dbt_utils.type_string() }}) as createdat,
cast(statistic as {{ type_json() }}) as statistic,
cast(updatedat as {{ dbt_utils.type_string() }}) as updatedat,
cast(membership as {{ type_json() }}) as membership,
cast(registerfrom as {{ dbt_utils.type_string() }}) as registerfrom,
cast(searchstring as {{ dbt_utils.type_string() }}) as searchstring,
{{ cast_to_boolean('isupdatedinfo') }} as isupdatedinfo,
cast(identification as {{ type_json() }}) as identification,
cast(lastactivatedat as {{ dbt_utils.type_string() }}) as lastactivatedat,
cast(lastviewnotificationat as {{ dbt_utils.type_string() }}) as lastviewnotificationat,
_airbyte_ab_id,
_airbyte_emitted_at,
{{ current_timestamp() }} as _airbyte_normalized_at
from {{ ref('users_ab1') }}
-- users
where 1 = 1