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

6 lines
134 B
PL/PgSQL

PRAGMA foreign_keys=OFF;
BEGIN;
UPDATE app_config_variables SET value = 'true' WHERE key = 'smtpTls';
COMMIT;
PRAGMA foreign_keys=ON;