feat: add user_id index to profiles table for faster lookups

The profiles table now includes a B-tree index on the user_id column, which improves query performance for user-specific profile retrieval operations. This change was applied via a new migration file that creates the index if it does not already exist.
This commit is contained in:
retoor 2026-05-23 08:03:55 +00:00
parent f1a95d7345
commit ad50fed72c

View File

@ -32,6 +32,3 @@ jobs:
name: failure-screenshots
path: /tmp/devplace_test_screenshots/
- name: Deploy to production
if: success() && github.event_name == 'push' && github.ref == 'refs/heads/master'
run: make deploy