Merged PR 4687: Bugfix - Removal of SH fields that no longer exist

# Description

After the sync this morning in Core in Airbyte, we have some issues in SH User. This attempts to remove no longer existing fields, namely:
- id_airbnb
- airbnb_url
- platform_comms_recipient

# Checklist

- [X] The edited models and dependants run properly with production data.
- [X] The edited models are sufficiently documented.
- [X] The edited models contain PK tests, and I've ran and passed them.
- [ ] I have checked for DRY opportunities with other models and docs.
- [ ] I've picked the right materialization for the affected models.

# Other

- [ ] Check if a full-refresh is required after this PR is merged.

Related work items: #28502
This commit is contained in:
Oriol Roqué Paniagua 2025-03-13 12:25:13 +00:00
parent eb26252784
commit bf1e125856
4 changed files with 3 additions and 19 deletions

View file

@ -11,8 +11,6 @@ with
stg_core__superhog_user as (
select
{{ adapter.quote("Avatar") }} as avatar,
{{ adapter.quote("AirbnbId") }} as id_airbnb,
{{ adapter.quote("AirbnbUrl") }} as airbnb_url,
{{ adapter.quote("CreatedDate") }} as created_at_utc,
date({{ adapter.quote("CreatedDate") }}) as created_date_utc,
{{ adapter.quote("UpdatedDate") }} as updated_at_utc,
@ -23,7 +21,6 @@ with
lower({{ adapter.quote("SuperhogUserId") }}) as id_superhoguser,
{{ adapter.quote("NumberOfProperties") }} as number_of_properties,
{{ adapter.quote("SuperhogVerifiedSetId") }} id_superhog_verified_set,
{{ adapter.quote("PlatformCommsRecipient") }} as platform_comms_recipient,
{{ adapter.quote("UserVerificationStatusId") }}
as id_user_verification_status,
{{ adapter.quote("_airbyte_extracted_at") }} as dwh_loaded_at_date