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

6 lines
99 B
MySQL
Raw Normal View History

PRAGMA foreign_keys=OFF;
BEGIN;
DROP INDEX idx_audit_logs_country;
COMMIT;
PRAGMA foreign_keys=ON;