mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-17 17:23:30 +03:00
8 lines
179 B
PL/PgSQL
8 lines
179 B
PL/PgSQL
PRAGMA foreign_keys=OFF;
|
|
BEGIN;
|
|
ALTER TABLE oidc_clients DROP COLUMN launch_url;
|
|
|
|
ALTER TABLE user_authorized_oidc_clients DROP COLUMN created_at;
|
|
COMMIT;
|
|
PRAGMA foreign_keys=ON;
|