diff options
author | Christopher Baines <mail@cbaines.net> | 2019-12-29 17:55:04 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2019-12-29 17:55:04 +0000 |
commit | 82b797ee9869ebe24f7dbbcc56c3d500e75dc2d3 (patch) | |
tree | c3bca8a2b7f1606b407009c0e349aeba01f3c83b /sqitch/revert | |
parent | 7e7cc1c8f17723bd909f84be11326cc1d47223d0 (diff) | |
download | data-service-82b797ee9869ebe24f7dbbcc56c3d500e75dc2d3.tar data-service-82b797ee9869ebe24f7dbbcc56c3d500e75dc2d3.tar.gz |
Create an index on the hash component of the store path
For derivation_source_files.
Diffstat (limited to 'sqitch/revert')
-rw-r--r-- | sqitch/revert/derivation_source_files_store_path_hash_index.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sqitch/revert/derivation_source_files_store_path_hash_index.sql b/sqitch/revert/derivation_source_files_store_path_hash_index.sql new file mode 100644 index 0000000..89190d8 --- /dev/null +++ b/sqitch/revert/derivation_source_files_store_path_hash_index.sql @@ -0,0 +1,7 @@ +-- Revert guix-data-service:derivation_source_files_store_path_hash_index from pg + +BEGIN; + +DROP INDEX derivation_source_files_hash; + +COMMIT; |