mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 10:56:06 -04:00
Snapshot schema 72 (#13873)
Including another batch of fixes to the schema dump script
This commit is contained in:
parent
41461fd4d6
commit
0a38c7ec6d
13 changed files with 2165 additions and 22 deletions
|
@ -0,0 +1,8 @@
|
|||
CREATE TABLE background_updates (
|
||||
update_name text NOT NULL,
|
||||
progress_json text NOT NULL,
|
||||
depends_on text,
|
||||
ordering integer DEFAULT 0 NOT NULL
|
||||
);
|
||||
ALTER TABLE ONLY background_updates
|
||||
ADD CONSTRAINT background_updates_uniqueness UNIQUE (update_name);
|
|
@ -0,0 +1,6 @@
|
|||
CREATE TABLE background_updates (
|
||||
update_name text NOT NULL,
|
||||
progress_json text NOT NULL,
|
||||
depends_on text, ordering INT NOT NULL DEFAULT 0,
|
||||
CONSTRAINT background_updates_uniqueness UNIQUE (update_name)
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue