Skip to content

Commit 6f61725

Browse files
committed
feat: add indexes in register and login flows for cleanup jobs
1 parent d76e70f commit 6f61725

4 files changed

+6
-0
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
DROP INDEX `selfservice_login_flows_expires_at_idx` ON `selfservice_login_flows`;
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
CREATE INDEX selfservice_login_flows_expires_at_idx
2+
ON selfservice_login_flows (expires_at);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
DROP INDEX `selfservice_registration_flows_expires_at_idx` ON `selfservice_registration_flows`;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
CREATE INDEX selfservice_registration_flows_expires_at_idx
2+
ON selfservice_registration_flows (expires_at);

0 commit comments

Comments
 (0)