summary refs log tree commit diff
path: root/synapse/storage/schema
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2016-02-02 15:19:34 +0000
committerErik Johnston <erik@matrix.org>2016-02-02 15:21:10 +0000
commit65e92eca4912848b03f71b7b7d29727015be31ce (patch)
treef60ef124aa6ebf4fd3fcf446fa65abae5f53523d /synapse/storage/schema
parentMerge pull request #546 from matrix-org/erikj/events (diff)
downloadsynapse-65e92eca4912848b03f71b7b7d29727015be31ce.tar.xz
Change the way we do public room list fetching
Diffstat (limited to 'synapse/storage/schema')
-rw-r--r--synapse/storage/schema/delta/28/public_roms_index.sql16
1 files changed, 16 insertions, 0 deletions
diff --git a/synapse/storage/schema/delta/28/public_roms_index.sql b/synapse/storage/schema/delta/28/public_roms_index.sql
new file mode 100644
index 0000000000..ba62a974a4
--- /dev/null
+++ b/synapse/storage/schema/delta/28/public_roms_index.sql
@@ -0,0 +1,16 @@
+/* Copyright 2016 OpenMarket Ltd
+ *
+ * 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.
+*/
+
+CREATE INDEX public_room_index on rooms(is_public);