Files
pocket-id/backend/resources/migrations/sqlite/20250118180712_rename_email_config_variable.down.sql
2025-08-24 23:07:50 +02:00

6 lines
162 B
PL/PgSQL

PRAGMA foreign_keys=OFF;
BEGIN;
UPDATE app_config_variables SET key = 'emailEnabled' WHERE key = 'emailLoginNotificationEnabled';
COMMIT;
PRAGMA foreign_keys=ON;