From 3d14ef4106c06dd7758c4f9b66d8f250600e75f1 Mon Sep 17 00:00:00 2001 From: Gleb Tcivie Date: Fri, 5 Jul 2024 12:33:39 +0300 Subject: [PATCH] Fix issue with table --- docker/postgres/init.sql | 2 -- 1 file changed, 2 deletions(-) diff --git a/docker/postgres/init.sql b/docker/postgres/init.sql index 7d16017..3f234c7 100644 --- a/docker/postgres/init.sql +++ b/docker/postgres/init.sql @@ -49,6 +49,4 @@ CREATE TABLE IF NOT EXISTS node_neighbors UNIQUE (node_id, neighbor_id) ); -CREATE INDEX idx_node_neighbors_node_id ON node_neighbors (node_id); -CREATE INDEX idx_node_neighbors_neighbor_id ON node_neighbors (neighbor_id); CREATE UNIQUE INDEX idx_unique_node_neighbor ON node_neighbors (node_id, neighbor_id);