mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-22 17:25:06 +03:00
8 lines
256 B
PL/PgSQL
8 lines
256 B
PL/PgSQL
PRAGMA foreign_keys=OFF;
|
|
BEGIN;
|
|
ALTER TABLE oidc_authorization_codes DROP COLUMN code_challenge;
|
|
ALTER TABLE oidc_authorization_codes DROP COLUMN code_challenge_method_sha256;
|
|
ALTER TABLE oidc_clients DROP COLUMN is_public;
|
|
COMMIT;
|
|
PRAGMA foreign_keys=ON;
|