Database Table: jobstatus

From Dreamwidth Notes
Revision as of 17:14, 22 March 2009 by SlowSculpture (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Definition

CREATE TABLE jobstatus (
  handle VARCHAR(100) PRIMARY KEY,
  RESULT BLOB,
  start_time INT(10) UNSIGNED NOT NULL,
  end_time INT(10) UNSIGNED NOT NULL,
  STATUS ENUM('running', 'success', 'error'),
  KEY (end_time)
)

Relationships

Location

Global database