Files
pocket-id/backend/resources/migrations/sqlite/20250118180712_rename_email_config_variable.down.sql

6 lines
162 B
MySQL
Raw Normal View History

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