diff options
author | Erik Johnston <erikj@element.io> | 2024-04-09 13:03:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-09 13:03:41 +0100 |
commit | d40878451c1f76f10cfa1bb6befc9627fc13a104 (patch) | |
tree | 99615f429d80dcadb392ec1bd8035efb03f4f6bf /synapse/storage/schema | |
parent | Bump packaging from 23.2 to 24.0 (#17027) (diff) | |
download | synapse-d40878451c1f76f10cfa1bb6befc9627fc13a104.tar.xz |
Add forgotten schema delta (#17054)
This should have been in #17045. Whoops.
Diffstat (limited to 'synapse/storage/schema')
-rw-r--r-- | synapse/storage/schema/main/delta/84/04_access_token_index.sql | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/synapse/storage/schema/main/delta/84/04_access_token_index.sql b/synapse/storage/schema/main/delta/84/04_access_token_index.sql new file mode 100644 index 0000000000..d2fa945c8f --- /dev/null +++ b/synapse/storage/schema/main/delta/84/04_access_token_index.sql @@ -0,0 +1,15 @@ +-- +-- This file is licensed under the Affero General Public License (AGPL) version 3. +-- +-- Copyright (C) 2023 New Vector, Ltd +-- +-- This program is free software: you can redistribute it and/or modify +-- it under the terms of the GNU Affero General Public License as +-- published by the Free Software Foundation, either version 3 of the +-- License, or (at your option) any later version. +-- +-- See the GNU Affero General Public License for more details: +-- <https://www.gnu.org/licenses/agpl-3.0.html>. + +INSERT INTO background_updates (ordering, update_name, progress_json) VALUES + (8404, 'access_tokens_refresh_token_id_idx', '{}'); |