From 3d01854fa118383aa15e19de1cb764ed0a3878f1 Mon Sep 17 00:00:00 2001 From: Bernd Bestel Date: Thu, 16 Mar 2023 21:16:27 +0100 Subject: [PATCH] Don't use double quotes for SQL string literals (references #2170) --- migrations/0115.sql | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/migrations/0115.sql b/migrations/0115.sql index 15636c61..20935e58 100644 --- a/migrations/0115.sql +++ b/migrations/0115.sql @@ -1 +1,3 @@ -update user_settings set key = "stock_due_soon_days" where key = "stock_expring_soon_days"; +UPDATE user_settings +SET key = 'stock_due_soon_days' +WHERE key = 'stock_expring_soon_days';