From b5a7975b026f2e16bbab57028c5553af6c884bc1 Mon Sep 17 00:00:00 2001 From: Neil Johnson Date: Thu, 8 Oct 2020 21:17:08 +0100 Subject: [PATCH] fix tests --- .../main/schema/delta/59/02drop_unused_stream_tables.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/synapse/storage/databases/main/schema/delta/59/02drop_unused_stream_tables.sql b/synapse/storage/databases/main/schema/delta/59/02drop_unused_stream_tables.sql index 6ed34eb690..7cfdf6d540 100644 --- a/synapse/storage/databases/main/schema/delta/59/02drop_unused_stream_tables.sql +++ b/synapse/storage/databases/main/schema/delta/59/02drop_unused_stream_tables.sql @@ -14,5 +14,5 @@ */ -- Unused -DROP table cache_invalidation_stream; -DROP table account_data_max_stream_id; \ No newline at end of file +DROP TABLE IF EXISTS cache_invalidation_stream; +DROP TABLE IF EXISTS account_data_max_stream_id; \ No newline at end of file