MatrixSynapse/synapse/storage/schema/full_schemas/11/media_repository.sql

66 lines
3.0 KiB
MySQL
Raw Normal View History

2015-03-04 14:34:38 +01:00
/* Copyright 2014, 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.
*/
CREATE TABLE IF NOT EXISTS local_media_repository (
2015-04-02 11:06:22 +02:00
media_id VARCHAR(150), -- The id used to refer to the media.
media_type VARCHAR(150), -- The MIME-type of the media.
2015-03-04 14:34:38 +01:00
media_length INTEGER, -- Length of the media in bytes.
created_ts BIGINT, -- When the content was uploaded in ms.
2015-04-02 11:06:22 +02:00
upload_name VARCHAR(150), -- The name the media was uploaded with.
user_id VARCHAR(150), -- The user who uploaded the file.
2015-03-18 12:18:49 +01:00
UNIQUE (media_id)
2015-04-09 14:45:20 +02:00
);
2015-03-04 14:34:38 +01:00
CREATE TABLE IF NOT EXISTS local_media_repository_thumbnails (
2015-04-02 11:06:22 +02:00
media_id VARCHAR(150), -- The id used to refer to the media.
2015-03-04 14:34:38 +01:00
thumbnail_width INTEGER, -- The width of the thumbnail in pixels.
thumbnail_height INTEGER, -- The height of the thumbnail in pixels.
2015-04-02 11:06:22 +02:00
thumbnail_type VARCHAR(150), -- The MIME-type of the thumbnail.
thumbnail_method VARCHAR(150), -- The method used to make the thumbnail.
2015-03-04 14:34:38 +01:00
thumbnail_length INTEGER, -- The length of the thumbnail in bytes.
2015-03-18 12:18:49 +01:00
UNIQUE (
2015-03-04 14:34:38 +01:00
media_id, thumbnail_width, thumbnail_height, thumbnail_type
)
2015-04-09 14:45:20 +02:00
);
2015-03-04 14:34:38 +01:00
CREATE INDEX local_media_repository_thumbnails_media_id
2015-03-04 14:34:38 +01:00
ON local_media_repository_thumbnails (media_id);
CREATE TABLE IF NOT EXISTS remote_media_cache (
2015-04-02 11:06:22 +02:00
media_origin VARCHAR(150), -- The remote HS the media came from.
media_id VARCHAR(150), -- The id used to refer to the media on that server.
media_type VARCHAR(150), -- The MIME-type of the media.
created_ts BIGINT, -- When the content was uploaded in ms.
2015-04-02 11:06:22 +02:00
upload_name VARCHAR(150), -- The name the media was uploaded with.
2015-03-04 14:34:38 +01:00
media_length INTEGER, -- Length of the media in bytes.
2015-04-02 11:06:22 +02:00
filesystem_id VARCHAR(150), -- The name used to store the media on disk.
2015-03-18 12:18:49 +01:00
UNIQUE (media_origin, media_id)
2015-04-09 14:45:20 +02:00
);
2015-03-04 14:34:38 +01:00
CREATE TABLE IF NOT EXISTS remote_media_cache_thumbnails (
2015-04-02 11:06:22 +02:00
media_origin VARCHAR(150), -- The remote HS the media came from.
media_id VARCHAR(150), -- The id used to refer to the media.
2015-03-04 14:34:38 +01:00
thumbnail_width INTEGER, -- The width of the thumbnail in pixels.
thumbnail_height INTEGER, -- The height of the thumbnail in pixels.
2015-04-02 11:06:22 +02:00
thumbnail_method VARCHAR(150), -- The method used to make the thumbnail
thumbnail_type VARCHAR(150), -- The MIME-type of the thumbnail.
2015-03-04 14:34:38 +01:00
thumbnail_length INTEGER, -- The length of the thumbnail in bytes.
2015-04-02 11:06:22 +02:00
filesystem_id VARCHAR(150), -- The name used to store the media on disk.
2015-03-18 12:18:49 +01:00
UNIQUE (
2015-03-04 14:34:38 +01:00
media_origin, media_id, thumbnail_width, thumbnail_height,
2015-03-18 12:18:49 +01:00
thumbnail_type
)
2015-04-09 14:45:20 +02:00
);