Skip to content

Commit

Permalink
fix: removes schema from query
Browse files Browse the repository at this point in the history
  • Loading branch information
kenodressel authored and mmpetarpeshev committed Jun 26, 2024
1 parent 3c23b68 commit 91b3595
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/database/token/token-db.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ export class TokenDbService {
) * 100 AS "priceChangeYear"
FROM
"Token" t
LEFT JOIN public."Pair" p ON t.id = p.t0
LEFT JOIN "Pair" p ON t.id = p.t0
OR t.id = p.t1
LEFT JOIN LATERAL (
SELECT
Expand Down

0 comments on commit 91b3595

Please sign in to comment.