7 lines
221 B
Plaintext
7 lines
221 B
Plaintext
|
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)
|
||
|
);
|