summary refs log tree commit diff
path: root/synapse/storage/schema/common/full_schemas/54
diff options
context:
space:
mode:
authorRichard van der Hoff <1389908+richvdh@users.noreply.github.com>2021-05-07 10:22:05 +0100
committerGitHub <noreply@github.com>2021-05-07 10:22:05 +0100
commit25f43faa70f7cc58493b636c2702ae63395779dc (patch)
treee615a9ea3de2fc556534bd4ab8bca9735b2d959a /synapse/storage/schema/common/full_schemas/54
parentExport jemalloc stats to prometheus when used (#9882) (diff)
downloadsynapse-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/common/full_schemas/54')
-rw-r--r--synapse/storage/schema/common/full_schemas/54/full.sql8
1 files changed, 8 insertions, 0 deletions
diff --git a/synapse/storage/schema/common/full_schemas/54/full.sql b/synapse/storage/schema/common/full_schemas/54/full.sql
new file mode 100644
index 0000000000..1005880466
--- /dev/null
+++ b/synapse/storage/schema/common/full_schemas/54/full.sql
@@ -0,0 +1,8 @@
+
+
+CREATE TABLE background_updates (
+    update_name text NOT NULL,
+    progress_json text NOT NULL,
+    depends_on text,
+    CONSTRAINT background_updates_uniqueness UNIQUE (update_name)
+);