blob: d5a2c04aa9c560045b6706403e93b27fbb1a8e47 (
plain) (
blame)
1
2
3
4
5
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)
);
|