Changeset 23 for trunk/doc

Show
Ignore:
Timestamp:
05/01/06 18:32:09 (4 years ago)
Author:
btrott
Message:

Implemented Job->replace_with with transactional support.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/doc/schema.sql

    r9 r23  
    44        arg             MEDIUMBLOB, 
    55        uniqkey         VARCHAR(255) NULL, 
    6         insert_time     DATETIME, 
    7         run_after       DATETIME, 
    8         grabbed_until   DATETIME, 
     6        insert_time     INTEGER UNSIGNED, 
     7        run_after       INTEGER UNSIGNED, 
     8        grabbed_until   INTEGER UNSIGNED, 
    99        priority        SMALLINT UNSIGNED, 
    1010        coalesce        VARCHAR(255), 
     
    1313 
    1414CREATE TABLE note ( 
    15         jobid, 
     15        jobid           BIGINT UNSIGNED NOT NULL, 
    1616        notekey, 
    1717        value 
    18 ) 
     18); 
    1919 
    2020 
    2121CREATE TABLE error ( 
    22  
    23  
    24 ) 
     22        jobid           BIGINT UNSIGNED NOT NULL, 
     23        message         VARCHAR(255) NOT NULL 
     24); 
    2525 
    2626 
    2727CREATE TABLE exitstatus ( 
    28         jobid 
    29         status 
    30         completition_time 
    31         delete_after 
    32 ) 
     28        jobid           BIGINT UNSIGNED NOT NULL, 
     29        status          SMALLINT UNSIGNED, 
     30        completion_time INTEGER UNSIGNED, 
     31        delete_after    INTEGER UNSIGNED 
     32);