Skip to content

Commit

Permalink
fix _transaction view in views.sql
Browse files Browse the repository at this point in the history
  • Loading branch information
SaveTheAles authored Oct 1, 2024
1 parent 1d3d49f commit 896f26c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion database/schema/011-views.sql
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ CREATE OR REPLACE VIEW _transaction as (
SELECT *
FROM transaction
LEFT JOIN (
SELECT *
SELECT
transaction_hash,
index,
type,
value,
involved_accounts_addresses
FROM message
) as msg ON transaction.hash = msg.transaction_hash
) _tx
Expand Down

0 comments on commit 896f26c

Please sign in to comment.