Files
pocket-id-pocket-id-2/backend/resources/migrations/sqlite/20251024000000_webauthn_credential_params.down.sql
2025-10-24 12:18:38 +02:00

6 lines
125 B
PL/PgSQL

PRAGMA foreign_keys=OFF;
BEGIN;
ALTER TABLE webauthn_sessions DROP COLUMN credential_params;
COMMIT;
PRAGMA foreign_keys=ON;