ReferenceSchemasDatabases
login_attempts
Recent login attempts, used by the brute-force protection logic.
Table login_attempts
Recent login attempts, used by the brute-force protection logic.
Database: ionize
Owner: SDK brute-force module
Columns
| Column | Type | Nullable | Description |
|---|---|---|---|
id | UUID | no | Primary key. |
domain | TEXT | no | ciam or iam. |
identifier | TEXT | no | Login identifier (typically email). |
source_ip | INET | yes | Client IP. |
success | BOOLEAN | no | Whether the attempt succeeded. |
created_at | TIMESTAMPTZ | no | Attempt time. |
Related
Schema owned by SDK brute-force module. Migrations live in sdk/src/db.ts.