cic-dw/migrations/005_descending_index.sql

5 lines
126 B
SQL

CREATE UNIQUE INDEX index_id ON transactions USING btree (ID DESC);
---- create above / drop below ----
DROP INDEX index_id;