included id_accommodation

This commit is contained in:
Joaquin Ossa 2024-12-03 11:58:42 +01:00
parent 63b3cae062
commit 1af03e2b42
3 changed files with 6 additions and 1 deletions

View file

@ -7,6 +7,7 @@ select
id_verification,
id_booking,
id_user_partner,
id_accommodation,
version,
case when version = 'V1' then 'Guesty' else null end as verification_source,
verification_status,

View file

@ -30,6 +30,10 @@ models:
tests:
- not_null
- name: id_accommodation
data_type: text
description: "unique Superhog generated id for a listing"
- name: version
data_type: text
description: "value to identify if it is Guesty (V1) or E-deposit (V2)"

View file

@ -7,7 +7,7 @@ select
av.id_verification,
av.id_booking,
av.id_user_partner,
null as id_accommodation,
av.id_accommodation,
av.version,
av.verification_source,
av.verification_status,