Files
pocket-id/backend/resources/migrations/sqlite/20241115131129_pkce.up.sql

8 lines
288 B
MySQL
Raw Normal View History

PRAGMA foreign_keys=OFF;
BEGIN;
2024-11-15 15:00:25 +01:00
ALTER TABLE oidc_authorization_codes ADD COLUMN code_challenge TEXT;
ALTER TABLE oidc_authorization_codes ADD COLUMN code_challenge_method_sha256 NUMERIC;
ALTER TABLE oidc_clients ADD COLUMN is_public BOOLEAN DEFAULT FALSE;
COMMIT;
PRAGMA foreign_keys=ON;