forked from dbt-labs/jaffle-shop-classic
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update _models.yml file in wh subdirectory to reflect hashed PII columns
- Loading branch information
1 parent
ccf7f71
commit 98faa16
Showing
1 changed file
with
6 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,8 @@ version: 2 | |
|
||
models: | ||
- name: wh_customers | ||
meta: | ||
owner: '[email protected]' | ||
description: This table has basic information about a customer, as well as some derived facts based on a customer's orders | ||
|
||
columns: | ||
|
@@ -12,10 +14,10 @@ models: | |
- not_null | ||
|
||
- name: first_name | ||
description: Customer's first name. PII. | ||
description: Customer's first name, hashed for privacy | ||
|
||
- name: last_name | ||
description: Customer's last name. PII. | ||
description: Customer's last name, hashed for privacy | ||
|
||
- name: first_order | ||
description: Date (UTC) of a customer's first order | ||
|
@@ -30,6 +32,8 @@ models: | |
description: Total value (AUD) of a customer's orders | ||
|
||
- name: wh_orders | ||
meta: | ||
owner: '[email protected]' | ||
description: This table has basic information about orders, as well as some derived facts based on payments | ||
|
||
columns: | ||
|