Table s_report_result |
Description: Report Results |
PRIMARY KEY | ||
s_report_id_c
varchar (192) NOT NULL | This is the identifier of the report result | |
s_session_id_c
varchar (128) NOT NULL | This is the identifier of the session | |
s_valid_until_d
timestamp NOT NULL | This session is valid till this point in time | |
s_parameter_list_c
text | Parameters list in json | |
s_result_html_c
text | result represented in HTML | |
s_success_l
boolean default: '0' | Did the report finish successfully to be calculated? | |
s_error_message_c
text | in case of failure, this contains the error message | |
s_date_created_d
date default: CURRENT_DATE | The date the record was created. | |
s_created_by_c
varchar (20) | User ID of who created this record. | s_user |
s_date_modified_d
date | The date the record was modified. | |
s_modified_by_c
varchar (20) | User ID of who last modified this record. | s_user |
s_modification_id_t
timestamp default: CURRENT_TIMESTAMP | This identifies the current version of the record. | |
FOREIGN KEY s_report_result_fkcr: s_created_by_c => s_user s_report_result_fkmd: s_modified_by_c => s_user |