data-dwh-dbt-project/models/reporting/edeposit/edeposit__guesty_verifications.sql
2024-09-05 11:59:57 +02:00

13 lines
433 B
SQL

with
int_edeposit__guesty_verifications as (
select * from {{ ref("int_edeposit__guesty_verifications") }}
)
select
gv.id_verification as id_verification,
gv.id_booking as id_booking,
gv.is_cancelled as is_cancelled,
gv.ok_status_fee_in_gbp as ok_status_fee_in_gbp,
gv.created_date_utc as created_date_utc,
gv.checkout_date_utc as checkout_date_utc
from int_edeposit__guesty_verifications gv