start cross folder in int to stop piling models at int root

This commit is contained in:
Pablo Martin 2024-06-14 14:34:03 +02:00
parent 7d245a3b08
commit 71be833123
3 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,7 @@
with
hardcoded_rates as (select * from {{ ref("stg_seed__hardcoded_currency_rates") }}),
dates as (select * from {{ ref("int_dates") }})
select d.date_day as rate_date, r.*
from dates d
cross join hardcoded_rates r
where d.date_day > cast('2020-01-01' as date)