{{ 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('referrals_ab1') }} select cast(_id as {{ dbt_utils.type_string() }}) as _id, cast({{ adapter.quote('user') }} as {{ dbt_utils.type_string() }}) as {{ adapter.quote('user') }}, cast(invitee as {{ dbt_utils.type_string() }}) as invitee, cast(createdat as {{ dbt_utils.type_string() }}) as createdat, {{ cast_to_boolean('fromsystem') }} as fromsystem, _airbyte_ab_id, _airbyte_emitted_at, {{ current_timestamp() }} as _airbyte_normalized_at from {{ ref('referrals_ab1') }} -- referrals where 1 = 1