You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

7 lines
221 B

  1. CREATE TABLE background_updates (
  2. update_name text NOT NULL,
  3. progress_json text NOT NULL,
  4. depends_on text, ordering INT NOT NULL DEFAULT 0,
  5. CONSTRAINT background_updates_uniqueness UNIQUE (update_name)
  6. );