mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-08-24 21:17:31 +00:00
10 lines
190 B
PL/PgSQL
10 lines
190 B
PL/PgSQL
PRAGMA foreign_keys=OFF;
|
|
BEGIN;
|
|
|
|
DROP TABLE IF EXISTS oidc_clients_allowed_api_permissions;
|
|
DROP TABLE IF EXISTS api_permissions;
|
|
DROP TABLE IF EXISTS apis;
|
|
|
|
COMMIT;
|
|
PRAGMA foreign_keys=ON;
|