mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-10 15:22:56 +03:00
9 lines
202 B
PL/PgSQL
9 lines
202 B
PL/PgSQL
PRAGMA foreign_keys=OFF;
|
|
BEGIN;
|
|
DROP INDEX IF EXISTS idx_audit_logs_event;
|
|
DROP INDEX IF EXISTS idx_audit_logs_user_id;
|
|
DROP INDEX IF EXISTS idx_audit_logs_client_name;
|
|
|
|
COMMIT;
|
|
PRAGMA foreign_keys=ON;
|