/
var
/
www
/
html
/
sugar13-old
/
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['roles_modules'] = array( 'table' => 'roles_modules', 'fields' => array( 'id' => array( 'name' => 'id', 'type' => 'id', ), 'role_id' => array( 'name' => 'role_id', 'type' => 'id', ), 'module_id' => array( 'name' => 'module_id', 'type' => 'id', ), 'allow' => array( 'name' => 'allow', 'type' => 'bool', 'len' => '1', 'default' => '0', ), 'date_modified' => array( 'name' => 'date_modified', 'type' => 'datetime', ), 'deleted' => array( 'name' => 'deleted', 'type' => 'bool', 'len' => '1', 'default' => '0', ), ), 'indices' => array( array( 'name' => 'roles_modulespk', 'type' => 'primary', 'fields' => array( 'id', ), ), array( 'name' => 'idx_module_id', 'type' => 'index', 'fields' => array( 'module_id', ), ), ), );