diff --git a/models/intermediate/core/int_core__booking_details.sql b/models/intermediate/core/int_core__booking_details.sql index 5ef152c..4741a53 100644 --- a/models/intermediate/core/int_core__booking_details.sql +++ b/models/intermediate/core/int_core__booking_details.sql @@ -78,6 +78,7 @@ select b.guest_email, uu.billing_country_name as guest_billing_country, uu.billing_town as guest_billing_town, + a.friendly_name, a.country_name as accommodation_country, a.address_line_1 as accommodation_address, vr.is_verification_request_complete, diff --git a/models/intermediate/core/schema.yml b/models/intermediate/core/schema.yml index 27b560a..5f017bb 100644 --- a/models/intermediate/core/schema.yml +++ b/models/intermediate/core/schema.yml @@ -5100,6 +5100,10 @@ models: data_type: character varying description: "Billing town of the guest." + - name: friendly_name + data_type: character varying + description: "Name of the listing." + - name: accommodation_country data_type: character varying description: "Country of the listing" diff --git a/models/reporting/core/core__booking_details.sql b/models/reporting/core/core__booking_details.sql index fc01ce9..d76d0ed 100644 --- a/models/reporting/core/core__booking_details.sql +++ b/models/reporting/core/core__booking_details.sql @@ -22,6 +22,7 @@ select guest_email as guest_email, guest_billing_country as guest_billing_country, guest_billing_town as guest_billing_town, + friendly_name as friendly_name, accommodation_country as accommodation_country, accommodation_address as accommodation_address, is_verification_request_complete as is_verification_request_complete, diff --git a/models/reporting/core/schema.yml b/models/reporting/core/schema.yml index 66be311..88dbe74 100644 --- a/models/reporting/core/schema.yml +++ b/models/reporting/core/schema.yml @@ -1502,6 +1502,10 @@ models: data_type: character varying description: "Billing town of the guest." + - name: friendly_name + data_type: character varying + description: "Name of the listing." + - name: accommodation_country data_type: character varying description: "Country of the listing"