Skip to content

Commit

Permalink
corrected index
Browse files Browse the repository at this point in the history
  • Loading branch information
Taaseen-Ali committed Apr 8, 2021
1 parent 5f2ce5e commit 2069a30
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion sql/conseil.sql
Original file line number Diff line number Diff line change
Expand Up @@ -708,7 +708,10 @@ CREATE INDEX ix_balance_updates_block_level ON tezos.balance_updates USING btree

-- Index: ix_operations_block_level

CREATE INDEX ix_operations_block_level ON tezos.operations USING btree (block_level ASC NULLS LAST) TABLESPACE pg_default;
CREATE INDEX ix_operations_block_level_delegate
ON tezos.operations USING btree
(level ASC NULLS LAST, delegate COLLATE pg_catalog."default" ASC NULLS LAST)
TABLESPACE pg_default;

--
-- Name: accounts accounts_block_id_fkey; Type: FK CONSTRAINT; Schema: tezos; Owner: -
Expand Down

0 comments on commit 2069a30

Please sign in to comment.