From 54696c1b0e8ab4678c26ce2570dd5fdd32213d97 Mon Sep 17 00:00:00 2001 From: Kiana Sheibani Date: Sat, 16 Dec 2023 22:40:37 -0500 Subject: [PATCH] Drop unnecessary index on database --- src/database.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/database.rs b/src/database.rs index 18835f5..f662cf3 100644 --- a/src/database.rs +++ b/src/database.rs @@ -189,7 +189,6 @@ CREATE TABLE "{0}_network" ( FOREIGN KEY(player_B) REFERENCES "{0}_players" ON DELETE CASCADE ) STRICT; -CREATE INDEX "{0}_network_A" ON "{0}_network" (player_A); CREATE INDEX "{0}_network_B" ON "{0}_network" (player_B);"#, dataset );