diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2020-08-14 09:25:40 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-14 09:25:40 -0400 |
commit | 6b7ce1d332766bc2da9e99b22a452e0813a2aae3 (patch) | |
tree | d50f68fdcbe14e595b119ebb27cf0673b240b560 /synapse/storage/databases/main/schema | |
parent | Convert misc database code to async (#8087) (diff) | |
download | synapse-6b7ce1d332766bc2da9e99b22a452e0813a2aae3.tar.xz |
Remove some unused database functions. (#8085)
Diffstat (limited to 'synapse/storage/databases/main/schema')
-rw-r--r-- | synapse/storage/databases/main/schema/delta/58/13remove_presence_allow_inbound.sql | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/synapse/storage/databases/main/schema/delta/58/13remove_presence_allow_inbound.sql b/synapse/storage/databases/main/schema/delta/58/13remove_presence_allow_inbound.sql new file mode 100644 index 0000000000..15421b99ac --- /dev/null +++ b/synapse/storage/databases/main/schema/delta/58/13remove_presence_allow_inbound.sql @@ -0,0 +1,17 @@ +/* Copyright 2020 The Matrix.org Foundation C.I.C. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +-- This table is no longer used. +DROP TABLE IF EXISTS presence_allow_inbound; |