diff --git a/db/migrations/00014_create_cid_indexes.sql b/db/migrations/00014_create_cid_indexes.sql index c5f559544..bc38c5a26 100644 --- a/db/migrations/00014_create_cid_indexes.sql +++ b/db/migrations/00014_create_cid_indexes.sql @@ -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); @@ -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; diff --git a/db/schema.sql b/db/schema.sql index 2ca0f50d6..02e92f209 100644 --- a/db/schema.sql +++ b/db/schema.sql @@ -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: - --