Skip to content

Commit

Permalink
Merge pull request #34 from cybercongress/view-fix-patch
Browse files Browse the repository at this point in the history
Fixed views initiation and definition
  • Loading branch information
cyborgshead authored Oct 1, 2024
2 parents 1d3d49f + 896f26c commit 6478ed9
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 6478ed9

Please sign in to comment.