mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-09-19 17:39:05 +02: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;
|