From 779405e222b0845bcc38b75e18493c15a75e4a47 Mon Sep 17 00:00:00 2001 From: Michael Myaskovsky Date: Mon, 29 Dec 2025 13:18:21 +0000 Subject: [PATCH] Modify assets metadata. --- models/schema.yml | 6 +++--- models/staging/schema.yml | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/models/schema.yml b/models/schema.yml index ff0e323b3..286ef2452 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] 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] 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] columns: - name: order_id diff --git a/models/staging/schema.yml b/models/staging/schema.yml index 628a98f6e..e79324d12 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] columns: - name: customer_id - name: stg_orders config: - tags: ["staging", "finance"] + tags: ["staging", "finance", test] columns: - name: order_id - name: status - name: stg_payments config: - tags: ["staging", "finance"] + tags: ["staging", "finance", test] columns: - name: payment_id - name: payment_method - name: stg_signups config: - tags: ["staging", "PII"] + tags: ["staging", "PII", test] columns: - name: signup_id - name: customer_email