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

6 lines
151 B
MySQL
Raw Normal View History

2025-10-24 12:14:19 +02:00
PRAGMA foreign_keys=OFF;
BEGIN;
ALTER TABLE webauthn_sessions ADD COLUMN credential_params TEXT NOT NULL DEFAULT '[]';
COMMIT;
PRAGMA foreign_keys=ON;