Files
pocket-id/backend/resources/migrations/sqlite/20250810144214_apps_dashboard.down.sql

8 lines
179 B
MySQL
Raw Normal View History

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;