a few quick and dirty improvements
This commit is contained in:
parent
a902abfa24
commit
824ff8da9e
7 changed files with 17 additions and 3 deletions
|
|
@ -1,3 +1,4 @@
|
|||
{{ config(materialized="table", unique_key="id_booking") }}
|
||||
with
|
||||
stg_core__booking as (select * from {{ ref("stg_core__booking") }}),
|
||||
int_core__price_plans as (select * from {{ ref("int_core__price_plans") }}),
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
{{ config(materialized="table", unique_key="id_booking") }}
|
||||
with
|
||||
stg_core__booking as (select * from {{ ref("stg_core__booking") }}),
|
||||
stg_core__booking_state as (select * from {{ ref("stg_core__booking_state") }}),
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
{{ config(materialized="table", unique_key="id_booking") }}
|
||||
with
|
||||
stg_core__booking_state as (select * from {{ ref("stg_core__booking_state") }}),
|
||||
stg_core__booking_with_dup_flag as (
|
||||
|
|
|
|||
|
|
@ -37,6 +37,7 @@ As for the general logic, so that the monster below makes some slight sense:
|
|||
- Finally, whatever doesn't fall into Not Started or Action Required,
|
||||
is considered Complete.
|
||||
*/
|
||||
{{ config(materialized="table", unique_key="id_verification_request") }}
|
||||
with
|
||||
stg_core__verification_request as (
|
||||
select * from {{ ref("stg_core__verification_request") }}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
{{ config(materialized="table", unique_key="id_verification_request") }}
|
||||
with
|
||||
stg_core__verification_request as (
|
||||
select * from {{ ref("stg_core__verification_request") }}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue