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