Skip to content
This repository has been archived by the owner on Sep 28, 2021. It is now read-only.

Commit

Permalink
remove tx_data_index
Browse files Browse the repository at this point in the history
  • Loading branch information
i-norden committed Oct 21, 2020
1 parent 4d0edc4 commit 46859e6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
3 changes: 0 additions & 3 deletions db/migrations/00014_create_cid_indexes.sql
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@ CREATE INDEX tx_dst_index ON eth.transaction_cids USING btree (dst);

CREATE INDEX tx_src_index ON eth.transaction_cids USING btree (src);

CREATE INDEX tx_data_index ON eth.transaction_cids USING btree (tx_data);

-- receipt indexes
CREATE INDEX rct_tx_id_index ON eth.receipt_cids USING btree (tx_id);

Expand Down Expand Up @@ -107,7 +105,6 @@ DROP INDEX eth.rct_cid_index;
DROP INDEX eth.rct_tx_id_index;

-- transaction indexes
DROP INDEX eth.tx_data_index;
DROP INDEX eth.tx_src_index;
DROP INDEX eth.tx_dst_index;
DROP INDEX eth.tx_mh_index;
Expand Down
7 changes: 0 additions & 7 deletions db/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -886,13 +886,6 @@ CREATE INDEX timestamp_index ON eth.header_cids USING brin ("timestamp");
CREATE INDEX tx_cid_index ON eth.transaction_cids USING btree (cid);


--
-- Name: tx_data_index; Type: INDEX; Schema: eth; Owner: -
--

CREATE INDEX tx_data_index ON eth.transaction_cids USING btree (tx_data);


--
-- Name: tx_dst_index; Type: INDEX; Schema: eth; Owner: -
--
Expand Down

0 comments on commit 46859e6

Please sign in to comment.