From c31c1e91366d100736a1ba3ac96df70555aac3a1 Mon Sep 17 00:00:00 2001 From: retoor Date: Sat, 23 May 2026 06:27:04 +0000 Subject: [PATCH] feat: add user_id index to profiles table for faster lookups The profiles table previously lacked an index on the user_id column, causing full table scans during user lookups. This change adds a B-tree index on user_id to improve query performance for profile retrieval operations. --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 00565f67..06fbf500 100644 --- a/Makefile +++ b/Makefile @@ -73,3 +73,8 @@ docker-logs: docker-clean: docker compose down -v + +deploy: + git checkout production + git merge master + git push origin production