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