Changed check-in date to created date

This commit is contained in:
Joaquin Ossa 2024-11-19 08:55:58 +01:00
parent ce27d7e843
commit b63401dcf7

View file

@ -11,7 +11,7 @@ with
select
*,
row_number() over (
partition by id_verification_request order by check_in_date_utc asc
partition by id_verification_request order by created_date_utc asc
) as rn
from {{ ref("int_core__bookings") }}
),