Column | Type | Modifiers --------------------+-----------------------------+-------------------------------------------------------------- id | bigint | not null default nextval('configoperation_id_seq'::regclass) node | text | not null run_schedule | timestamp without time zone | not null run_start | timestamp without time zone | run_end | timestamp without time zone | exe_handler | text | not null exe_method | text | not null exe_arguments | text | not null result_id | bigint | result_progress | double precision | result_description | text | result_error | text | Indexes: "pkconfigoperation" PRIMARY KEY, btree (id) Foreign-key constraints: "fk_configoperations_configresult" FOREIGN KEY (result_id) REFERENCES configresult(id) "fk_configschedule_confignode" FOREIGN KEY (node) REFERENCES confignode(node)