18 lines
382 B
Plaintext
18 lines
382 B
Plaintext
config {
|
|
type: "table",
|
|
schema: "pphe_five9_gold",
|
|
tags: ["daily"],
|
|
description: "All interactions table for CALLS and DIGITAL"
|
|
}
|
|
|
|
select TIMESTAMP,
|
|
AGENT_ID,
|
|
'PHONE' MEDIA_TYPE_ID,
|
|
1 INTERACTIONS
|
|
from ${ref("stg_calls")}
|
|
union all
|
|
select TIMESTAMP,
|
|
AGENT_ID,
|
|
MEDIA_TYPE,
|
|
INTERACTIONS
|
|
from ${ref("stg_digital")} |