Files
pocket-id/backend/resources/migrations/sqlite/20250619115053_add_country_index.up.sql
2025-08-24 23:07:50 +02:00

6 lines
124 B
PL/PgSQL

PRAGMA foreign_keys=OFF;
BEGIN;
CREATE INDEX idx_audit_logs_country ON audit_logs(country);
COMMIT;
PRAGMA foreign_keys=ON;