Difference between revisions of "Database Table: jobstatus"
From Dreamwidth Notes
(Created page with 'jobstatus =Definition= <source lang="sql"> CREATE TABLE jobstatus ( handle VARCHAR(100) PRIMARY KEY, result BLOB, start_time INT(10) UNSIGNED N...') |
Foxfirefey (Talk | contribs) m (right category, reformat) |
||
Line 1: | Line 1: | ||
− | + | = Definition = | |
− | =Definition= | + | |
<source lang="sql"> | <source lang="sql"> | ||
CREATE TABLE jobstatus ( | CREATE TABLE jobstatus ( | ||
Line 12: | Line 12: | ||
</source> | </source> | ||
− | =Relationships= | + | = Relationships = |
+ | |||
+ | = Location = | ||
− | |||
[[Global database]] | [[Global database]] | ||
+ | |||
+ | [[Category: Database Tables|jobstatus]] |
Revision as of 20:47, 26 March 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) )