fix(GRO-574): switch rate limit to memory storage to unblock UAT #273

Merged
lint-roller-qa[bot] merged 4 commits from GRO-574-rate-limit-migration into main 2026-04-12 12:20:00 +00:00
2 changed files with 13 additions and 0 deletions
Showing only changes of commit 564fb75cc2 - Show all commits
@@ -0,0 +1,6 @@
-- Better-Auth rate limiting table (GRO-574)
CREATE TABLE "rate_limit" (
key TEXT NOT NULL PRIMARY KEY,
count INTEGER NOT NULL,
last_request BIGINT NOT NULL
);
@@ -176,6 +176,13 @@
"when": 1775396067192,
"tag": "0024_invoice_indexes",
"breakpoints": true
},
{
"idx": 25,
"version": "7",
"when": 1775482467192,
"tag": "0025_rate_limit",
"breakpoints": true
}
]
}