1
0
mirror of https://github.com/pocket-id/pocket-id.git synced 2026-02-07 11:38:27 +00:00
Files
pocket-id/backend/resources/migrations/sqlite/20240813211251_passkey_backup_flags.down.sql
2025-08-24 23:07:50 +02:00

7 lines
185 B
PL/PgSQL

PRAGMA foreign_keys=OFF;
BEGIN;
ALTER TABLE webauthn_credentials DROP COLUMN backup_eligible;
ALTER TABLE webauthn_credentials DROP COLUMN backup_state;
COMMIT;
PRAGMA foreign_keys=ON;