Commit Graph

11 Commits

Author SHA1 Message Date
0ba03a7b1c chore: add initial package structure with core module and dependencies 2024-12-02 11:28:53 +00:00
67cfe83858 fix: correct version bump and resolve bug in user authentication flow 2024-12-02 11:19:30 +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
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
c9c2111dc9 feat: add initial project structure with core files and configuration 2024-11-24 16:03:43 +00:00