Commit Graph

10 Commits

Author SHA1 Message Date
914593689e chore: bump project version to 1.2.3 in package.json and cargo.toml 2024-12-02 11:24:37 +00:00
237275fe47 fix: correct spelling of 'recieve' to 'receive' in user registration handler 2024-12-02 11:21:08 +00:00
67cfe83858 fix: correct version bump and resolve bug in user authentication flow 2024-12-02 11:19:30 +00:00
ee0813211d fix: correct off-by-one error in pagination offset calculation for user list endpoint 2024-12-02 11:07:00 +00:00
bf6ec45ae5 fix: correct package version resolution in dependency installer 2024-12-02 11:02:33 +00:00
901ac80ffe feat: add user_id index to profiles table for faster lookups
The profiles table previously lacked an index on the user_id column, causing slow query performance when joining with the users table. This change adds a B-tree index on user_id to optimize JOIN operations and WHERE clauses filtering by user_id. The migration file `20240614_add_user_id_index.sql` was created with the appropriate CREATE INDEX statement, and the schema version was bumped to 2.1.0 in the migration tracking table.
2024-11-28 02:53:24 +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
ba50ac806b chore: initialize project structure with package scaffolding and metadata 2024-11-27 20:52:35 +00:00
c9c2111dc9 feat: add initial project structure with core files and configuration 2024-11-24 16:03:43 +00:00