File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1166,6 +1166,13 @@ CREATE INDEX compiled_contracts_sources_compilation_id ON public.compiled_contra
11661166CREATE INDEX compiled_contracts_sources_source_hash ON public .compiled_contracts_sources USING btree (source_hash);
11671167
11681168
1169+ --
1170+ -- Name: contract_deployments_address; Type: INDEX; Schema: public; Owner: -
1171+ --
1172+
1173+ CREATE INDEX contract_deployments_address ON public .contract_deployments USING btree (address);
1174+
1175+
11691176--
11701177-- Name: contract_deployments_contract_id; Type: INDEX; Schema: public; Owner: -
11711178--
@@ -1626,4 +1633,5 @@ ALTER TABLE ONLY public.verified_contracts
16261633--
16271634
16281635INSERT INTO public .schema_migrations (version) VALUES
1629- (' 20250717103432' );
1636+ (' 20250717103432' ),
1637+ (' 20250723145429' );
Original file line number Diff line number Diff line change 1+ -- migrate:up
2+ CREATE INDEX IF NOT EXISTS contract_deployments_address ON contract_deployments USING btree(address);
3+
4+ -- migrate:down
5+ DROP INDEX IF EXISTS contract_deployments_address;
You can’t perform that action at this time.
0 commit comments