1
0
mirror of https://github.com/pocket-id/pocket-id.git synced 2026-02-04 22:04:45 +00:00
Files
pocket-id/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;