From e86d3fa0d2c6baf5a6effb51b14640bb7e8b4628 Mon Sep 17 00:00:00 2001 From: Georgi Date: Fri, 7 Feb 2025 10:26:53 +0200 Subject: [PATCH] chore: remove ciphertexts_handle_ct_idx --- .../20250205130209_create_pbs_computations_table.sql | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/fhevm-engine/coprocessor/migrations/20250205130209_create_pbs_computations_table.sql b/fhevm-engine/coprocessor/migrations/20250205130209_create_pbs_computations_table.sql index 1964325d..817e53f3 100644 --- a/fhevm-engine/coprocessor/migrations/20250205130209_create_pbs_computations_table.sql +++ b/fhevm-engine/coprocessor/migrations/20250205130209_create_pbs_computations_table.sql @@ -9,5 +9,4 @@ CREATE TABLE IF NOT EXISTS pbs_computations ( CREATE INDEX IF NOT EXISTS pbs_computations_handle_hash_idx ON pbs_computations USING HASH (handle); -CREATE INDEX IF NOT EXISTS ciphertexts_handle_hash_idx ON ciphertexts USING HASH (handle); -CREATE INDEX IF NOT EXISTS ciphertexts_handle_ct_idx ON ciphertexts (handle) INCLUDE (ciphertext); -- for fast retrieval of ciphertexts in sns-worker \ No newline at end of file +CREATE INDEX IF NOT EXISTS ciphertexts_handle_hash_idx ON ciphertexts USING HASH (handle); \ No newline at end of file