aboutsummaryrefslogtreecommitdiff
path: root/sqitch/deploy/derivation_source_files_store_path_hash_index.sql
blob: 4c1f3bb168ea50f94bf0de4c4763883382d5ff7b (plain)
1
2
3
4
5
6
7
8
-- Deploy guix-data-service:derivation_source_files_store_path_hash_index to pg

BEGIN;

CREATE INDEX derivation_source_files_hash
  ON derivation_source_files (substring(store_path from 12 for 32));

COMMIT;