Created indices on search and filter fields

This commit is contained in:
2025-03-05 20:25:42 -05:00
parent aff81e27eb
commit 70d3b22cdc
7 changed files with 17 additions and 0 deletions

View File

@@ -10,4 +10,6 @@ CREATE TABLE IF NOT EXISTS raid_builder.game(
created_date timestamptz NOT NULL
);
CREATE INDEX idx_game_game_name ON raid_builder.game(game_name);
GRANT ALL ON TABLE raid_builder.game TO raid_builder;