Files
pocket-id/backend/resources/migrations/sqlite/20250131154719_oidc_user_group_restriction.down.sql

6 lines
109 B
MySQL
Raw Normal View History

PRAGMA foreign_keys=OFF;
BEGIN;
DROP TABLE oidc_clients_allowed_user_groups;
COMMIT;
PRAGMA foreign_keys=ON;