1
0
mirror of https://github.com/pocket-id/pocket-id.git synced 2026-02-05 15:33:49 +00:00
Files
pocket-id/backend/resources/migrations/sqlite/20250609202611_client_credentials.up.sql
2025-08-24 23:07:50 +02:00

7 lines
124 B
PL/PgSQL

PRAGMA foreign_keys=OFF;
BEGIN;
ALTER TABLE oidc_clients ADD COLUMN credentials TEXT NULL;
COMMIT;
PRAGMA foreign_keys=ON;