mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-07-18 16:59:53 +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;
|