diff options
author | Richard van der Hoff <richard@matrix.org> | 2018-05-11 00:17:11 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2018-05-15 15:11:59 +0100 |
commit | 47815edcfae73c5b938f8354853a09c0b80ef27e (patch) | |
tree | a68e0f4ff14809f5a30b4446c3837aa1eb725957 /synapse/storage/schema | |
parent | Merge remote-tracking branch 'origin/master' into develop (diff) | |
download | synapse-47815edcfae73c5b938f8354853a09c0b80ef27e.tar.xz |
ConsentResource to gather policy consent from users
Hopefully there are enough comments and docs in this that it makes sense on its own.
Diffstat (limited to 'synapse/storage/schema')
-rw-r--r-- | synapse/storage/schema/delta/48/add_user_consent.sql | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/synapse/storage/schema/delta/48/add_user_consent.sql b/synapse/storage/schema/delta/48/add_user_consent.sql new file mode 100644 index 0000000000..5237491506 --- /dev/null +++ b/synapse/storage/schema/delta/48/add_user_consent.sql @@ -0,0 +1,18 @@ +/* Copyright 2018 New Vector 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. + */ + +/* record the version of the privacy policy the user has consented to + */ +ALTER TABLE users ADD COLUMN consent_version TEXT; |