Merged PR 5234: Remove 2 fields that no longer exist

# Description

Removes 2 fields that no longer exist in the backend. Needed to do since I need to bring another table to sync_core.

No PBI dependencies found.

Fields are:
* flag_as_problem in SH User
* autonavigate in VerificationSet

# Checklist

- [X] The edited models and dependants run properly with production data.
- [ ] 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

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

Related work items: #30229
This commit is contained in:
Oriol Roqué Paniagua 2025-05-16 10:06:08 +00:00
parent 53874ab08a
commit ca3fc4add9
6 changed files with 0 additions and 12 deletions

View file

@ -42,7 +42,6 @@ select
su.updated_date_utc,
su.verified_at_utc,
su.verified_date_utc,
su.flag_as_problem,
su.number_of_properties,
su.id_superhog_verified_set,
su.id_user_verification_status,

View file

@ -288,10 +288,6 @@ models:
- name: verified_date_utc
data_type: date
description: The date when the user was verified.
- name: flag_as_problem
data_type: boolean
description: |
True if the user has been flagged as a problem. False otherwise.
- name: number_of_properties
data_type: bigint
description: |

View file

@ -32,7 +32,6 @@ select
updated_date_utc as updated_date_utc,
verified_at_utc as verified_at_utc,
verified_date_utc as verified_date_utc,
flag_as_problem as flag_as_problem,
number_of_properties as number_of_properties,
id_superhog_verified_set as id_superhog_verified_set,
null as platform_comms_recipient,

View file

@ -590,10 +590,6 @@ models:
data_type: date
description: ""
- name: flag_as_problem
data_type: boolean
description: ""
- name: number_of_properties
data_type: bigint
description: ""

View file

@ -17,7 +17,6 @@ with
date({{ adapter.quote("UpdatedDate") }}) as updated_date_utc,
{{ adapter.quote("VerifiedDate") }} as verified_at_utc,
cast({{ adapter.quote("VerifiedDate") }} as date) as verified_date_utc,
{{ adapter.quote("FlagAsProblem") }} as flag_as_problem,
lower({{ adapter.quote("SuperhogUserId") }}) as id_superhoguser,
{{ adapter.quote("NumberOfProperties") }} as number_of_properties,
{{ adapter.quote("SuperhogVerifiedSetId") }} id_superhog_verified_set,

View file

@ -7,7 +7,6 @@ with
{{ adapter.quote("Version") }} as verification_set_version,
{{ adapter.quote("AutoFill") }} as autofill,
{{ adapter.quote("IsActive") }} as is_active,
{{ adapter.quote("AutoNavigate") }} as autonavigate,
{{ adapter.quote("HidePassword") }} as hide_password,
{{ adapter.quote("UserVerificationSetType") }}
as user_verification_set_type,