From fb50ae85437bec45cdddecf6205925d6667ee8f7 Mon Sep 17 00:00:00 2001 From: Richard van der Hoff Date: Tue, 7 Apr 2020 18:20:37 +0100 Subject: [PATCH] fix sql syntax for postgres postgres requires single quotes... --- .../main/schema/delta/58/02remove_dup_outbound_pokes.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/synapse/storage/data_stores/main/schema/delta/58/02remove_dup_outbound_pokes.sql b/synapse/storage/data_stores/main/schema/delta/58/02remove_dup_outbound_pokes.sql index f1abef5b17..fdc39e9ba5 100644 --- a/synapse/storage/data_stores/main/schema/delta/58/02remove_dup_outbound_pokes.sql +++ b/synapse/storage/data_stores/main/schema/delta/58/02remove_dup_outbound_pokes.sql @@ -19,4 +19,4 @@ */ INSERT INTO background_updates (ordering, update_name, progress_json) - VALUES (5800, "remove_dup_outbound_pokes", "{}"); + VALUES (5800, 'remove_dup_outbound_pokes', '{}');