Added From field to transactions

This commit is contained in:
Matt Krump
2017-11-09 16:51:22 -06:00
parent 84205a21ea
commit c7bd6de7da
9 changed files with 57 additions and 28 deletions
@@ -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
View File
@@ -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)
);