Add mappings in stg

This commit is contained in:
Anna Saiapina 2024-11-20 15:55:20 +00:00 committed by GCP Dataform
parent feea18feca
commit 5989584875
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,14 @@
config {
type: "table",
schema: "pphe_five9_stg",
assertions: {
uniqueKey: ["RESV_STATUS_ID"],
nonNull: ["RESV_STATUS_ID"]
},
tags: ["daily"],
description: "Daily load of MAPPING_RESV_STATUS table from raw"
}
select
*
from ${ref("MAPPING_RESV_STATUS")}

View File

@ -0,0 +1,14 @@
config {
type: "table",
schema: "pphe_five9_stg",
assertions: {
uniqueKey: ["UPDATE_TYPE_ID"],
nonNull: ["UPDATE_TYPE_ID"]
},
tags: ["daily"],
description: "Daily load of MAPPING_UPDATE_TYPE table from raw"
}
select
*
from ${ref("MAPPING_UPDATE_TYPE")}