Adding tables to the gold stage

This commit is contained in:
Anna Saiapina 2024-03-11 12:07:09 +00:00 committed by GCP Dataform
parent 67f3e0a0a2
commit 0b1ba29825
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,14 @@
config {
type: "table",
schema: "pphe_five9_gold",
assertions: {
uniqueKey: ["CALL_ID"],
nonNull: ["CALL_ID"]
},
tags: ["daily"],
description: "Daily load of CALLS table from stg"
}
select
*
from ${ref("stg_CALLS")}

View File

@ -0,0 +1,14 @@
config {
type: "table",
schema: "pphe_five9_gold",
assertions: {
uniqueKey: ["?"],
nonNull: ["?"]
},
tags: ["daily"],
description: "Daily load of DIGITAL table from stg"
}
select
*
from ${ref("stg_DIGITAL")}