Files
pocket-id/backend/resources/migrations/sqlite/20250131154719_oidc_user_group_restriction.down.sql
2025-08-24 23:07:50 +02:00

6 lines
109 B
PL/PgSQL

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