diff options
author | Richard van der Hoff <richard@matrix.org> | 2020-07-10 12:18:35 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2020-07-10 12:18:35 +0100 |
commit | b1beb3ff59a42799154fa9b5d43de7e270ccbb58 (patch) | |
tree | b6580eea45a97108fcc6eda338cc8d84abdb98df /synapse/storage | |
parent | fix changelog (diff) | |
download | synapse-b1beb3ff59a42799154fa9b5d43de7e270ccbb58.tar.xz |
fix migration, again
Diffstat (limited to 'synapse/storage')
-rw-r--r-- | synapse/storage/data_stores/main/schema/delta/58/10drop_local_rejections_stream.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/data_stores/main/schema/delta/58/10drop_local_rejections_stream.sql b/synapse/storage/data_stores/main/schema/delta/58/10drop_local_rejections_stream.sql index 20ebd52e63..eb57203e46 100644 --- a/synapse/storage/data_stores/main/schema/delta/58/10drop_local_rejections_stream.sql +++ b/synapse/storage/data_stores/main/schema/delta/58/10drop_local_rejections_stream.sql @@ -19,4 +19,4 @@ added a table called 'local_rejections_stream'. This table is not used, and we drop it here for anyone who was affected. */ -DROP TABLE IF NOT EXISTS local_rejections_stream; +DROP TABLE IF EXISTS local_rejections_stream; |