Skip to content

Commit

Permalink
Cast APY columns as float (#660)
Browse files Browse the repository at this point in the history
  • Loading branch information
akan72 authored Dec 5, 2024
1 parent 209c6f4 commit 17a67ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions models/staging/defillama/fact_defillama_yields.sql
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ SELECT
value:"project"::string AS project,
value:"symbol"::string AS symbol,
value:"tvlUsd"::float AS tvl_usd,
value:"apyBase" AS apy_base,
value:"apyReward" AS apy_reward,
value:"apyBase"::float AS apy_base,
value:"apyReward"::float AS apy_reward,
value:"apy"::float AS apy,
value:"pool"::string AS pool,
value:"apyPct1D"::string AS apy_pct_1d,
Expand Down

0 comments on commit 17a67ef

Please sign in to comment.