Commit Graph

9 Commits

Author SHA1 Message Date
bf6ae1ad5f 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.
2024-11-28 02:41:34 +00:00
14f8eef71f feat: add user_id index to profiles table for faster lookups
The new index on the `user_id` column in the `profiles` table improves query performance when filtering or joining by user identifier, reducing full table scans during profile retrieval operations.
2024-11-27 22:48:03 +00:00
5b4413db3f feat: add user_id index to profiles table for faster lookups
The new index on the `user_id` column in the `profiles` table improves query performance when filtering or joining by user identifier, reducing full table scans during profile retrieval operations.
2024-11-27 22:46:21 +00:00
6dbdbbcf14 chore: bump project version to 1.2.3 in package.json and setup.py 2024-11-27 20:57:31 +00:00
3801a07ffb feat: add initial package structure with core module scaffolding 2024-11-27 20:52:59 +00:00
ba50ac806b chore: initialize project structure with package scaffolding and metadata 2024-11-27 20:52:35 +00:00
c8e6eb2db7 chore: add package.json with project metadata and dependencies 2024-11-27 20:26:27 +00:00
efa285f1a1 docs: add project overview and setup instructions to readme 2024-11-24 16:11:38 +00:00
c9c2111dc9 feat: add initial project structure with core files and configuration 2024-11-24 16:03:43 +00:00