From be3f4b4f2593ce8007355dfcee325735b5826a46 Mon Sep 17 00:00:00 2001 From: retoor Date: Fri, 3 Oct 2025 17:45:32 +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. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 687f356..86d8eba 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Project Name Matching and Issue Creation in app.py +# Mr. Issue This document explains in detail how the project name is matched from the user's prompt and how the issue titles and descriptions are extracted, formatted as JSON, and used to create issues via the Gitea API in the `app.py` FastAPI application.