20 lines
586 B
SQL
20 lines
586 B
SQL
{{ config(
|
|
indexes = [{'columns':['_airbyte_emitted_at'],'type':'btree'}],
|
|
schema = "unibag",
|
|
tags = [ "nested" ]
|
|
) }}
|
|
-- Final base SQL model
|
|
-- depends_on: {{ ref('inventories_location_location_ab3') }}
|
|
select
|
|
_airbyte_location_hashid,
|
|
{{ adapter.quote('type') }},
|
|
coordinates,
|
|
_airbyte_ab_id,
|
|
_airbyte_emitted_at,
|
|
{{ current_timestamp() }} as _airbyte_normalized_at,
|
|
_airbyte_location_3_hashid
|
|
from {{ ref('inventories_location_location_ab3') }}
|
|
-- location at inventories/location/location from {{ ref('inventories_location') }}
|
|
where 1 = 1
|
|
|