mirror of
https://github.com/open-reception/appointment-booking-software.git
synced 2026-09-23 01:14:52 +02:00
Co-authored-by: hbel <7416029+hbel@users.noreply.github.com>
7 lines
211 B
SQL
7 lines
211 B
SQL
CREATE TABLE "passkey_challenge_throttle" (
|
|
"id" text PRIMARY KEY NOT NULL,
|
|
"failed_attempts" integer DEFAULT 0 NOT NULL,
|
|
"last_attempt_at" timestamp DEFAULT now() NOT NULL,
|
|
"reset_at" timestamp NOT NULL
|
|
);
|