mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
c66a06ac6b
This is in preparation for having multiple data stores that offer different functionality, e.g. splitting out state or event storage.
9 lines
190 B
SQL
9 lines
190 B
SQL
|
|
|
|
CREATE TABLE background_updates (
|
|
update_name text NOT NULL,
|
|
progress_json text NOT NULL,
|
|
depends_on text,
|
|
CONSTRAINT background_updates_uniqueness UNIQUE (update_name)
|
|
);
|