Add rate_limit table migration for Better Auth (GRO-574) #271

Merged
the-dogfather-cto[bot] merged 2 commits from GRO-574-rate-limit-migration into main 2026-04-12 03:30:45 +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
}
]
}