From 98a8d94a6673fe5b73bdc9f9ea7d9d8f20b24206 Mon Sep 17 00:00:00 2001 From: Michael Myaskovsky Date: Tue, 30 Dec 2025 13:20:30 +0000 Subject: [PATCH] Modify assets metadata. --- models/schema.yml | 5 +++-- models/staging/schema.yml | 8 ++++++-- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/models/schema.yml b/models/schema.yml index ff0e323b3..03cab1e43 100644 --- a/models/schema.yml +++ b/models/schema.yml @@ -37,7 +37,8 @@ models: - name: orders description: This table has basic information about orders, as well as some derived facts based on payments config: - tags: ["finance"] + tags: &id001 + - test columns: - name: order_id @@ -70,7 +71,7 @@ models: - name: returned_orders description: This table contains all of the returned orders config: - tags: ["finance"] + tags: *id001 columns: - name: order_id diff --git a/models/staging/schema.yml b/models/staging/schema.yml index 628a98f6e..38cb1d4a1 100644 --- a/models/staging/schema.yml +++ b/models/staging/schema.yml @@ -9,14 +9,18 @@ models: - name: stg_orders config: - tags: ["staging", "finance"] + tags: + - "staging" + - test columns: - name: order_id - name: status - name: stg_payments config: - tags: ["staging", "finance"] + tags: + - "staging" + - test columns: - name: payment_id - name: payment_method