Skip to content

Commit

Permalink
fix: undo pii change
Browse files Browse the repository at this point in the history
  • Loading branch information
saraburns1 committed Oct 25, 2024
1 parent 6cd03c4 commit 050fa37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion models/users/user_pii.sql
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ with
from {{ source("event_sink", "user_profile") }}
group by user_id
)
select ex.user_id as user_id, ex.external_user_id as external_user_id, ex.username as username, up.name as name, up.email as email
select ex.user_id as user_id, ex.external_user_id, ex.username, up.name, up.email
from {{ source("event_sink", "external_id") }} ex
left outer join most_recent_user_profile mrup on mrup.user_id = ex.user_id
left outer join
Expand Down

0 comments on commit 050fa37

Please sign in to comment.