Use double quotes

This commit is contained in:
Owen
2025-09-28 10:39:09 -07:00
parent 4523a8df0f
commit e43fc59634

View File

@@ -10,7 +10,7 @@ export default async function migration() {
try {
await db.execute(sql`BEGIN`);
const webauthnCredentialsQuery = await db.execute(sql`SELECT credentialId, publicKey FROM 'webauthnCredentials'`);
const webauthnCredentialsQuery = await db.execute(sql`SELECT "credentialId", "publicKey" FROM "webauthnCredentials"`);
const webauthnCredentials = webauthnCredentialsQuery.rows as { credentialId: string; publicKey: string }[];