mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-18 09:13:26 +03:00
7 lines
135 B
PL/PgSQL
7 lines
135 B
PL/PgSQL
PRAGMA foreign_keys=OFF;
|
|
BEGIN;
|
|
DROP INDEX IF EXISTS idx_api_keys_key;
|
|
DROP TABLE IF EXISTS api_keys;
|
|
COMMIT;
|
|
PRAGMA foreign_keys=ON;
|