Files
pocket-id/backend/resources/migrations/sqlite/20250619115053_add_country_index.up.sql

6 lines
124 B
MySQL
Raw Normal View History

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