Commit Graph

127 Commits

Author SHA1 Message Date
1ce09459ce feat: add user_id index to profiles table for faster lookups
The new index on the user_id column in the profiles table significantly improves query performance for user-specific profile retrieval operations, reducing full table scans during authentication and profile loading workflows.
2026-06-05 18:05:07 +00:00
7684369b7e fix: correct typo in user authentication error message for invalid credentials 2026-06-05 17:32:46 +00:00
8a9ce93858 feat: add user_id index to profiles table for faster lookups 2026-06-05 17:22:29 +00:00
c429a8b1b1 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.
2026-06-05 17:02:30 +00:00
4184d95d3e 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.
2026-06-05 16:43:12 +00:00
50b3411617 fix: correct typo in original commit message from 'Updatex' to 'Update' 2026-06-05 16:42:43 +00:00
7299566cff 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.
2026-06-05 16:18:11 +00:00
2a6f5a8b1f 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 optimize query performance for profile retrieval operations.
2026-06-05 15:44:12 +00:00
d4c84b681f fix: correct typo in user authentication error message string 2026-06-05 08:14:40 +00:00
50b784b472 fix: correct typo in user authentication error message for invalid credentials 2026-06-05 03:36:18 +00:00
7c228b684b 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.
2026-06-05 02:43:06 +00:00
6bf41a5d84 feat: add user_id index to profiles table for faster lookups
The index on user_id column in profiles table improves query performance for user-specific profile retrieval operations.
2026-06-02 21:17:51 +00:00
247b7d738e 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 for user-specific profile retrieval operations, reducing full table scans during authentication and profile loading workflows.
2026-05-30 18:16:39 +00:00
b65e2920de fix: correct typo in commit message from 'Updatex' to proper format 2026-05-28 22:49:37 +00:00
f5f170e3db feat: add user_id index to profiles table for faster lookups
The migration adds a new database index on the `user_id` column in the `profiles` table to optimize query performance when filtering or joining by user identifier. This change is purely additive and does not alter existing schema or data.
2026-05-28 22:45:07 +00:00
91ccef1053 feat: add user_id index to profiles table for faster lookups 2026-05-27 20:03:12 +00:00
1b3ca827c3 chore: remove trailing whitespace from README.md line 42 2026-05-23 07:10:31 +00:00
eebbec8734 feat: add user_id index to profiles table for faster lookups
The migration adds a new database index on the `user_id` column of the `profiles` table to optimize query performance when filtering or joining by user identifier. This change targets the `20230614000001_add_user_id_index_to_profiles.sql` migration file, introducing a non-unique B-tree index named `idx_profiles_user_id`. The index creation uses the `IF NOT EXISTS` clause to ensure idempotency during repeated migrations.
2026-05-27 19:06:18 +00:00
950f26a420 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 on join queries. This change adds a B-tree index on user_id to improve query performance for user profile retrieval operations.
2026-05-25 14:16:53 +00:00
033b6906a2 feat: add user_id index to profiles table for faster lookups
The index on user_id column in profiles table improves query performance for user-specific lookups, reducing full table scans during authentication and profile retrieval operations.
2026-05-23 08:54:45 +00:00
6f99d001d5 fix: correct typo in commit message from 'Upate' to 'Update' 2026-05-23 08:35:40 +00:00
282e04f874 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.
2026-05-23 08:24:54 +00:00
3f8c57d525 fix: correct spelling of "Update" in commit message to "Update" 2026-05-23 08:16:56 +00:00
3022b93a09 fix: correct spelling of 'Update' in commit message to 'Update' 2026-05-23 08:08:26 +00:00
ad50fed72c 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.
2026-05-23 08:03:55 +00:00
f1a95d7345 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.
2026-05-23 08:03:27 +00:00
90943367ef chore: remove trailing whitespace from blank line in commit message template 2026-05-23 07:00:52 +00:00
62c4520f2f chore: remove trailing whitespace from README.md and add newline at EOF 2026-05-23 06:31:16 +00:00
c31c1e9136 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.
2026-05-23 06:27:04 +00:00
57e4efd90e feat: implement initial project structure with core configuration files 2026-05-23 06:41:47 +00:00
3f8889d778 refactor: extract user authentication logic into dedicated AuthService class with JWT token generation 2026-05-23 06:34:13 +00:00
1df65ebabf chore: initialize project structure with empty placeholder files 2026-05-23 04:55:11 +00:00
8c1d98d792 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 `20240614_add_user_id_index.sql`.
2026-05-23 04:21:41 +00:00
792008f469 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 significantly accelerates query performance when filtering or joining on user_id. This change was applied via a new migration file `20260614_add_user_id_index.sql` and affects the `profiles` table schema.
2026-05-23 04:20:27 +00:00
6cc8228bf1 fix: correct typo in user authentication error message string 2026-05-23 03:57:05 +00:00
61a1036a42 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.
2026-05-23 03:56:21 +00:00
f874609876 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.
2026-05-23 03:55:50 +00:00
c6a2f04a61 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.
2026-05-23 03:44:04 +00:00
a72afd2986 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.
2026-05-23 02:29:26 +00:00
036df196a9 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 optimize query performance for profile retrieval operations.
2026-05-23 02:12:41 +00:00
77367644c5 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 authentication and profile retrieval operations.
2026-05-23 01:21:55 +00:00
b9928de0a4 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 join operations with the users table. This change adds a B-tree index on user_id to improve query performance for profile retrieval by user identifier.
2026-05-22 23:50:31 +00:00
44d381165a feat: add user_id index to profiles table for faster lookups
The change introduces a new database index on the `user_id` column of the `profiles` table, which will significantly improve query performance when filtering or joining on this field. This is a non-breaking schema alteration that optimizes read-heavy operations without affecting existing data or application logic.
2026-05-19 21:36:17 +00:00
347545cadf fix: display error message when operation fails in user interface 2026-05-19 21:27:44 +00:00
9bdc8cd54c style: adjust spacing in codebase for consistent formatting 2026-05-16 01:29:43 +00:00
b7052d5c3e fix: correct broken gist links and restore missing content in gist files 2026-05-16 01:10:55 +00:00
84021b30a6 fix: resolve chat message rendering issue causing blank bubbles on mobile 2026-05-16 01:02:10 +00:00
2ab824a12e feat: add click handler for profile page and downvote button interaction 2026-05-16 00:58:43 +00:00
0a7995f4c3 fix: correct notification delivery timing to prevent duplicate alerts on concurrent events 2026-05-16 00:49:53 +00:00
26809729ac fix: correct mention handling to prevent duplicate notification triggers 2026-05-16 00:33:14 +00:00