You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+18Lines changed: 18 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,24 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
8
## [Unreleased]
9
9
10
+
## [8.0.1]
11
+
12
+
- Fixes slow queries for account linking
13
+
14
+
### Migration
15
+
16
+
```sql
17
+
CREATEINDEXIF NOT EXISTS emailpassword_users_email_index ON emailpassword_users (app_id, email);
18
+
CREATEINDEXIF NOT EXISTS emailpassword_user_to_tenant_email_index ON emailpassword_user_to_tenant (app_id, tenant_id, email);
19
+
20
+
CREATEINDEXIF NOT EXISTS passwordless_users_email_index ON passwordless_users (app_id, email);
21
+
CREATEINDEXIF NOT EXISTS passwordless_users_phone_number_index ON passwordless_users (app_id, phone_number);
22
+
CREATEINDEXIF NOT EXISTS passwordless_user_to_tenant_email_index ON passwordless_user_to_tenant (app_id, tenant_id, email);
23
+
CREATEINDEXIF NOT EXISTS passwordless_user_to_tenant_phone_number_index ON passwordless_user_to_tenant (app_id, tenant_id, phone_number);
24
+
25
+
CREATEINDEXIF NOT EXISTS thirdparty_user_to_tenant_third_party_user_id_index ON thirdparty_user_to_tenant (app_id, tenant_id, third_party_id, third_party_user_id);
0 commit comments