mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-08-24 21:17:31 +00:00
10 lines
203 B
PL/PgSQL
10 lines
203 B
PL/PgSQL
PRAGMA foreign_keys= OFF;
|
|
BEGIN;
|
|
|
|
DROP TABLE IF EXISTS oidc_pushed_authorization_requests;
|
|
|
|
ALTER TABLE oidc_clients DROP COLUMN requires_pushed_authorization_requests;
|
|
|
|
COMMIT;
|
|
PRAGMA foreign_keys= ON;
|