summary refs log tree commit diff
path: root/synapse/storage/schema
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2016-02-03 13:53:59 +0000
committerErik Johnston <erik@matrix.org>2016-02-03 13:53:59 +0000
commit430e49605064b49cffa209dbd0165ab531b14a3b (patch)
treec571869d5eb802ff526a5dfca6e9f3b649c2f804 /synapse/storage/schema
parentAdd macaroon inspection script (diff)
parentSimplify get_rooms (diff)
downloadsynapse-430e49605064b49cffa209dbd0165ab531b14a3b.tar.xz
Merge pull request #552 from matrix-org/erikj/public_room_fix
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);