Show
Ignore:
Timestamp:
05/13/09 21:17:02 (7 months ago)
Author:
miyagawa
Message:

PostgreSQL patch from clkao

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/doc/schema-postgres.sql

    r131 r164  
    3232        grabbed_until   INTEGER NOT NULL, 
    3333        priority        SMALLINT, 
    34         coalesce        VARCHAR(255), 
    35         UNIQUE(funcid, uniqkey) 
     34        coalesce        VARCHAR(255) 
    3635); 
     36 
     37CREATE UNIQUE INDEX job_funcid_uniqkey ON job (funcid, uniqkey); 
    3738 
    3839CREATE INDEX job_funcid_runafter ON job (funcid, run_after);