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.
 
 
 
 
 
 

9 lines
269 B

  1. CREATE TABLE background_updates (
  2. update_name text NOT NULL,
  3. progress_json text NOT NULL,
  4. depends_on text,
  5. ordering integer DEFAULT 0 NOT NULL
  6. );
  7. ALTER TABLE ONLY background_updates
  8. ADD CONSTRAINT background_updates_uniqueness UNIQUE (update_name);