2
0
Fork 0
mirror of git://git.savannah.gnu.org/guix/data-service.git synced 2023-12-14 03:23:03 +01:00
data-service/sqitch/revert/add_index_on_builds_derivation_file_name.sql
Christopher Baines 299f9dc480 Add an index on the derivation_file_name field in the builds table
As this helps when finding builds relating to specific derivations.
2019-12-12 20:07:22 +00:00

7 lines
135 B
PL/PgSQL

-- Revert guix-data-service:add_index_on_builds_derivation_file_name from pg
BEGIN;
DROP INDEX builds_derivation_file_name;
COMMIT;