/
var
/
www
/
html
/
sugar14
/
modules
/
Trackers
/
Upload File
HOME
<?php /* * Your installation or use of this SugarCRM file is subject to the applicable * terms available at * http://support.sugarcrm.com/Resources/Master_Subscription_Agreements/. * If you do not agree to all of the applicable terms or do not have the * authority to bind the entity as an authorized representative, then do not * install or use this SugarCRM file. * * Copyright (C) SugarCRM Inc. All rights reserved. */ $dictionary['tracker_perf'] = [ 'table' => 'tracker_perf', 'fields' => [ 'id' => [ 'name' => 'id', 'vname' => 'LBL_ID', 'type' => 'int', 'len' => '11', 'isnull' => 'false', 'auto_increment' => true, 'reportable' => true, ], 'monitor_id' => [ 'name' => 'monitor_id', 'vname' => 'LBL_MONITOR_ID', 'type' => 'id', 'required' => true, 'reportable' => false, ], 'server_response_time' => [ 'name' => 'server_response_time', 'vname' => 'LBL_SERVER_RESPONSE_TIME', 'type' => 'float', 'dbType' => 'double', 'isnull' => 'false', ], 'db_round_trips' => [ 'name' => 'db_round_trips', 'vname' => 'LBL_DB_ROUND_TRIPS', 'type' => 'int', 'len' => '6', 'isnull' => 'false', ], 'files_opened' => [ 'name' => 'files_opened', 'vname' => 'LBL_FILES_OPENED', 'type' => 'int', 'len' => '6', 'isnull' => 'false', ], 'memory_usage' => [ 'name' => 'memory_usage', 'vname' => 'LBL_MEMORY_USAGE', 'type' => 'int', 'len' => '11', 'isnull' => 'true', ], 'deleted' => [ 'name' => 'deleted', 'vname' => 'LBL_DELETED', 'type' => 'bool', 'default' => '0', 'reportable' => false, 'comment' => 'Record deletion indicator', ], 'date_modified' => [ 'name' => 'date_modified', 'vname' => 'LBL_DATE_LAST_ACTION', 'type' => 'datetime', 'isnull' => 'false', ], ], //indices 'indices' => [ [ 'name' => 'tracker_perf_pk', 'type' => 'primary', 'fields' => [ 'id', ], ], [ 'name' => 'idx_tracker_perf_mon_id', 'type' => 'index', 'fields' => [ 'monitor_id', ], ], ], 'acls' => ['SugarACLStatic' => true], ];