diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2021-05-07 10:22:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-07 10:22:05 +0100 |
commit | 25f43faa70f7cc58493b636c2702ae63395779dc (patch) | |
tree | e615a9ea3de2fc556534bd4ab8bca9735b2d959a /synapse/storage/schema/delta/25 | |
parent | Export jemalloc stats to prometheus when used (#9882) (diff) | |
download | synapse-25f43faa70f7cc58493b636c2702ae63395779dc.tar.xz |
Reorganise the database schema directories (#9932)
The hope here is that by moving all the schema files into synapse/storage/schema, it gets a bit easier for newcomers to navigate. It certainly got easier for me to write a helpful README. There's more to do on that front, but I'll follow up with other PRs for that.
Diffstat (limited to 'synapse/storage/schema/delta/25')
-rw-r--r-- | synapse/storage/schema/delta/25/00background_updates.sql | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/synapse/storage/schema/delta/25/00background_updates.sql b/synapse/storage/schema/delta/25/00background_updates.sql deleted file mode 100644 index 2ad9e8fa56..0000000000 --- a/synapse/storage/schema/delta/25/00background_updates.sql +++ /dev/null @@ -1,21 +0,0 @@ -/* Copyright 2015, 2016 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 background_updates( - update_name TEXT NOT NULL, -- The name of the background update. - progress_json TEXT NOT NULL, -- The current progress of the update as JSON. - CONSTRAINT background_updates_uniqueness UNIQUE (update_name) -); |