@@ -438,7 +438,6 @@ CREATE INDEX analysis_data_idx ON analysis_data (data);
@column host execution host name
@column process_id identifies the Worker process on the Meadow (for 'LOCAL' is the OS PID)
@column resource_class_id links to Worker's resource class
@column analysis_id Analysis the Worker is specified into
@column work_done how many jobs the Worker has completed successfully
@column status current status of the Worker
@column born when the Worker process was started
...
...
@@ -455,8 +454,6 @@ CREATE TABLE worker (
host VARCHAR(255) NOT NULL,
process_id VARCHAR(255) NOT NULL,
resource_class_id INTEGER DEFAULT NULL,
analysis_id INTEGER DEFAULT NULL,
work_done INTEGER NOT NULL DEFAULT 0,
status TEXT NOT NULL DEFAULT 'READY', /* enum('SPECIALIZATION','COMPILATION','READY','PRE_CLEANUP','FETCH_INPUT','RUN','WRITE_OUTPUT','POST_CLEANUP','DEAD') DEFAULT 'READY' NOT NULL */
born TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,