Drop unnecessary index on database

This commit is contained in:
Kiana Sheibani 2023-12-16 22:40:37 -05:00
parent 47da06e3d6
commit 54696c1b0e
Signed by: toki
GPG key ID: 6CB106C25E86A9F7

View file

@ -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
);