forked from cerc-io/ipld-eth-server
Added From field to transactions
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
ALTER TABLE transactions
|
||||
DROP COLUMN tx_from
|
||||
@@ -0,0 +1,2 @@
|
||||
ALTER TABLE transactions
|
||||
ADD COLUMN tx_from VARCHAR(66)
|
||||
+2
-1
@@ -94,7 +94,8 @@ CREATE TABLE transactions (
|
||||
tx_gaslimit numeric,
|
||||
tx_gasprice numeric,
|
||||
tx_value numeric,
|
||||
block_id integer NOT NULL
|
||||
block_id integer NOT NULL,
|
||||
tx_from character varying(66)
|
||||
);
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user