mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
fix: passkey, error mapping
This commit is contained in:
@@ -0,0 +1 @@
|
||||
ALTER TABLE "passkey" RENAME COLUMN "credentialId" TO "credentialID";
|
||||
File diff suppressed because it is too large
Load Diff
@@ -260,6 +260,13 @@
|
||||
"when": 1772200673674,
|
||||
"tag": "0036_chief_night_thrasher",
|
||||
"breakpoints": true
|
||||
},
|
||||
{
|
||||
"idx": 37,
|
||||
"version": "7",
|
||||
"when": 1772200831628,
|
||||
"tag": "0037_neat_talon",
|
||||
"breakpoints": true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -84,7 +84,7 @@ export const passkey = pgTable("passkey", {
|
||||
userId: uuid("user_id")
|
||||
.notNull()
|
||||
.references(() => user.id, { onDelete: "cascade" }),
|
||||
credentialId: text().notNull(),
|
||||
credentialID: text().notNull(),
|
||||
counter: integer().notNull(),
|
||||
deviceType: text().notNull(),
|
||||
backedUp: boolean().notNull(),
|
||||
|
||||
Reference in New Issue
Block a user