Difference between revisions of "Database Table: jobstatus"

From Dreamwidth Notes
Jump to: navigation, search
m (right category, reformat)
m (Robot: Converting database table to use semantic mediawiki form.)
Line 1: Line 1:
 +
{{#set:name=jobstatus|clustered=false}}
 
= Definition =
 
= Definition =
  
Line 12: Line 13:
 
</source>
 
</source>
  
= Relationships =
+
{{Database Table Footer}}
 
+
= Location =
+
 
+
[[Global database]]
+
 
+
[[Category: Database Tables|jobstatus]]
+

Revision as of 13:15, 2 October 2009

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