diff --git a/models/schema.yml b/models/schema.yml index ff0e323b3..ca9f2eec6 100644 --- a/models/schema.yml +++ b/models/schema.yml @@ -4,7 +4,7 @@ models: - name: customers description: This table has basic information about a customer, as well as some derived facts based on a customer's orders aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa config: - tags: ["PII"] + tags: ["PII", test, test] columns: - name: customer_id @@ -37,7 +37,7 @@ models: - name: orders description: This table has basic information about orders, as well as some derived facts based on payments config: - tags: ["finance"] + tags: ["finance", test, test] columns: - name: order_id @@ -70,7 +70,7 @@ models: - name: returned_orders description: This table contains all of the returned orders config: - tags: ["finance"] + tags: ["finance", test, test] columns: - name: order_id diff --git a/models/staging/schema.yml b/models/staging/schema.yml index 628a98f6e..e321f8c2d 100644 --- a/models/staging/schema.yml +++ b/models/staging/schema.yml @@ -3,27 +3,27 @@ version: 2 models: - name: stg_customers config: - tags: ["staging", "PII"] + tags: ["staging", "PII", test, test] columns: - name: customer_id - name: stg_orders config: - tags: ["staging", "finance"] + tags: ["staging", "finance", test, test] columns: - name: order_id - name: status - name: stg_payments config: - tags: ["staging", "finance"] + tags: ["staging", "finance", test, test] columns: - name: payment_id - name: payment_method - name: stg_signups config: - tags: ["staging", "PII"] + tags: ["staging", "PII", test, test] columns: - name: signup_id - name: customer_email