Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
1yam committed Sep 7, 2023
1 parent 13f0ac5 commit bef8d6f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ def upgrade() -> None:
total_program_cost,
total_storage_cost,
total_cost
FROM (SELECT owner, sum(total_price) total_program_cost FROM program_costs_view GROUP BY owner) program_prices
FROM (SELECT owner, sum(total_price) total_program_cost FROM vm_costs_view GROUP BY owner) program_prices
FULL OUTER JOIN (SELECT owner, sum(f.size) storage_size
FROM file_pins
JOIN files f on file_pins.file_hash = f.hash
Expand Down

0 comments on commit bef8d6f

Please sign in to comment.