/
var
/
www
/
html
/
sugardemo
/
metadata
/
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['AddressBook'] = ['table' => 'address_book', 'fields' => [ 'assigned_user_id' => [ 'name' => 'assigned_user_id', 'vname' => 'LBL_USER_ID', 'type' => 'id', 'required' => true, 'reportable' => false, ], 'bean' => [ 'name' => 'bean', 'vname' => 'LBL_BEAN', 'type' => 'varchar', 'len' => '50', 'required' => true, 'reportable' => false, ], 'bean_id' => [ 'name' => 'bean_id', 'vname' => 'LBL_BEAN_ID', 'type' => 'id', 'required' => true, 'reportable' => false, ], ], 'indices' => [ [ 'name' => 'idx_address_book_pk', 'type' => 'primary', 'fields' => [ 'assigned_user_id', 'bean_id', ], ], [ 'name' => 'ab_user_bean_idx', 'type' => 'index', 'fields' => [ 'assigned_user_id', 'bean', ], ], ], /* end indices */ ]; $dictionary['AddressBookMailingList'] = ['table' => 'address_book_lists', 'fields' => [ 'id' => [ 'name' => 'id', 'type' => 'id', 'required' => true, 'reportable' => false, ], 'assigned_user_id' => [ 'name' => 'assigned_user_id', 'vname' => 'LBL_USER_ID', 'type' => 'id', 'required' => true, 'reportable' => false, ], 'list_name' => [ 'name' => 'list_name', 'vname' => 'LBL_MAILING_LIST', 'type' => 'varchar', 'len' => 100, 'required' => true, 'reportable' => false, ], ], 'indices' => [ [ 'name' => 'abl_pk', 'type' => 'primary', 'fields' => [ 'id', ], ], [ 'name' => 'abml_user_bean_idx', 'type' => 'index', 'fields' => [ 'assigned_user_id', ], ], ], /* end indices */ ]; $dictionary['AddressBookMailingListItems'] = ['table' => 'address_book_list_items', 'fields' => [ 'list_id' => [ 'name' => 'list_id', 'type' => 'id', 'required' => true, 'reportable' => false, ], 'bean_id' => [ 'name' => 'bean_id', 'type' => 'id', 'required' => true, 'reportable' => false, ], ], 'indices' => [ [ 'name' => 'idx_abli_pk', 'type' => 'primary', 'fields' => [ 'list_id', 'bean_id', ], ], ], /* end indices */ ];