summary refs log tree commit diff
path: root/synapse/storage/schema
diff options
context:
space:
mode:
authorErik Johnston <erikj@jki.re>2017-02-28 14:48:32 +0000
committerGitHub <noreply@github.com>2017-02-28 14:48:32 +0000
commit7eff3afa05e0d20bcd0eea6a1de8679c58a30610 (patch)
tree935214ee21c206fc757ff96dee5f06261bf1a83a /synapse/storage/schema
parentFix up txn name (diff)
parentAdd stream_id index to device_lists_outbound_pokes (diff)
downloadsynapse-7eff3afa05e0d20bcd0eea6a1de8679c58a30610.tar.xz
Merge pull request #1957 from matrix-org/device_poke_index
Add stream_id index to device_lists_outbound_pokes
Diffstat (limited to 'synapse/storage/schema')
-rw-r--r--synapse/storage/schema/delta/41/device_outbound_index.sql16
1 files changed, 16 insertions, 0 deletions
diff --git a/synapse/storage/schema/delta/41/device_outbound_index.sql b/synapse/storage/schema/delta/41/device_outbound_index.sql
new file mode 100644
index 0000000000..62f0b9892b
--- /dev/null
+++ b/synapse/storage/schema/delta/41/device_outbound_index.sql
@@ -0,0 +1,16 @@
+/* Copyright 2017 Vector Creations 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 device_lists_outbound_pokes_stream ON device_lists_outbound_pokes(stream_id);