14 lines
484 B
SQL
14 lines
484 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.verification_status as verification_status,
|
|
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
|