8 lines
382 B
SQL
8 lines
382 B
SQL
/*
|
|
This model here should not exist and will be deprecated. Downstream dependencies
|
|
should switch to reading from the new `athena__verification_fees`. The model
|
|
remains here as pointer to the new one to give downstream dependencies time to switch.
|
|
*/
|
|
with athena__verification_fees as (select * from {{ ref("athena__verification_fees") }})
|
|
select *
|
|
from athena__verification_fees
|