15 lines
495 B
MySQL
15 lines
495 B
MySQL
|
|
with
|
||
|
|
int_athena__verifications_with_fees as (
|
||
|
|
select * from {{ ref("int_athena__verifications_with_fees") }}
|
||
|
|
)
|
||
|
|
|
||
|
|
select
|
||
|
|
avf.id_verification as id_verification,
|
||
|
|
avf.id_booking as id_booking,
|
||
|
|
avf.verification_status as verification_status,
|
||
|
|
avf.is_cancelled as is_cancelled,
|
||
|
|
avf.ok_status_fee_in_gbp as ok_status_fee_in_gbp,
|
||
|
|
avf.created_date_utc as created_date_utc,
|
||
|
|
avf.checkout_date_utc as checkout_date_utc
|
||
|
|
from int_athena__verifications_with_fees avf
|