diff options
author | Erik Johnston <erik@matrix.org> | 2017-06-23 11:14:11 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2017-06-23 11:14:11 +0100 |
commit | 7fe8ed1787ca0c1f7a4c56aa1c85e486b76f4550 (patch) | |
tree | a2bd30b908118a6e9dff04259e7e2b54d6d6b44a /synapse/storage/schema/delta/43 | |
parent | Merge pull request #2297 from matrix-org/erikj/user_dir_fix (diff) | |
download | synapse-7fe8ed1787ca0c1f7a4c56aa1c85e486b76f4550.tar.xz |
Store URL cache preview downloads seperately
This makes it easier to clear old media out at a later date
Diffstat (limited to 'synapse/storage/schema/delta/43')
-rw-r--r-- | synapse/storage/schema/delta/43/url_cache.sql | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/synapse/storage/schema/delta/43/url_cache.sql b/synapse/storage/schema/delta/43/url_cache.sql new file mode 100644 index 0000000000..45ebe020da --- /dev/null +++ b/synapse/storage/schema/delta/43/url_cache.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. + */ + +ALTER TABLE local_media_repository ADD COLUMN url_cache TEXT; |