Files
pocket-id/backend/resources/migrations/sqlite/20251024000000_webauthn_credential_params.down.sql

6 lines
125 B
PL/PgSQL

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