summary refs log tree commit diff
path: root/synapse/storage/schema
diff options
context:
space:
mode:
authorDaniel Wagner-Hall <dawagner@gmail.com>2015-11-17 17:17:30 -0500
committerDaniel Wagner-Hall <dawagner@gmail.com>2015-11-17 17:17:30 -0500
commitba26eb3d5d487edb90c21db7efec631b80adf24b (patch)
tree443ada28bdf0a40c2ea24a60b02e6b27ff1d5f79 /synapse/storage/schema
parentMerge pull request #384 from matrix-org/erikj/shorter_retries (diff)
downloadsynapse-ba26eb3d5d487edb90c21db7efec631b80adf24b.tar.xz
Allow users to forget rooms
Diffstat (limited to 'synapse/storage/schema')
-rw-r--r--synapse/storage/schema/delta/26/forgotten_memberships.sql24
1 files changed, 24 insertions, 0 deletions
diff --git a/synapse/storage/schema/delta/26/forgotten_memberships.sql b/synapse/storage/schema/delta/26/forgotten_memberships.sql
new file mode 100644
index 0000000000..df55b9c6f6
--- /dev/null
+++ b/synapse/storage/schema/delta/26/forgotten_memberships.sql
@@ -0,0 +1,24 @@
+/* Copyright 2015 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.
+ */
+
+/*
+ * Keeps track of what rooms users have left and don't want to be able to
+ * access again.
+ *
+ * If all users on this server have left a room, we can delete the room
+ * entirely.
+ */
+
+ ALTER TABLE room_memberships ADD COLUMN forgotten INTEGER(1) DEFAULT 0;