mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-05-20 11:59:53 +00:00
11 lines
273 B
PL/PgSQL
11 lines
273 B
PL/PgSQL
PRAGMA foreign_keys= OFF;
|
|
BEGIN;
|
|
|
|
ALTER TABLE oidc_authorization_codes DROP COLUMN authentication_method;
|
|
ALTER TABLE oidc_refresh_tokens DROP COLUMN authentication_method;
|
|
ALTER TABLE oidc_device_codes DROP COLUMN authentication_method;
|
|
|
|
COMMIT;
|
|
PRAGMA foreign_keys= ON;
|
|
|