mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-08-03 05:26:06 -04:00
Move storage classes into a main "data store".
This is in preparation for having multiple data stores that offer different functionality, e.g. splitting out state or event storage.
This commit is contained in:
parent
1ee97cbd01
commit
c66a06ac6b
266 changed files with 4509 additions and 4331 deletions
8
synapse/storage/schema/full_schemas/54/full.sql
Normal file
8
synapse/storage/schema/full_schemas/54/full.sql
Normal file
|
@ -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)
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue