We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f15a4c8 commit 2b4b6beCopy full SHA for 2b4b6be
schema/migration-3-0001-20190816.sql
@@ -8,7 +8,7 @@
8
9
-- A utxo view which shows all unspent transaction outputs including the un-redeemed redeem
10
-- addresses.
11
-create view utxo_byron_view as select
+create or replace view utxo_byron_view as select
12
tx_out.*
13
from tx_out left outer join tx_in
14
on tx_out.tx_id = tx_in.tx_out_id and tx_out.index = tx_in.tx_out_index
@@ -19,7 +19,7 @@ create view utxo_byron_view as select
19
20
-- This should produce the same query results as the above `utxo_byron_view` for Shelley addresses
21
-- and non-redeem Byron addresses.
22
-create view utxo_view as select
+create or replace view utxo_view as select
23
24
from tx_out
25
left outer join tx_in on tx_out.tx_id = tx_in.tx_out_id and tx_out.index = tx_in.tx_out_index
0 commit comments