mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-24 08:36:48 +00:00
18 lines
681 B
PHP
18 lines
681 B
PHP
<?php
|
|
$dictionary['securitygroups_default'] = array(
|
|
'table' => 'securitygroups_default',
|
|
'fields' => array(
|
|
array('name' =>'id', 'type' =>'char', 'len'=>'36', 'required'=>true, 'default'=>'')
|
|
, array('name' =>'securitygroup_id', 'type' =>'char', 'len'=>'36')
|
|
, array('name' =>'module', 'type' =>'varchar', 'len'=>'50')
|
|
, array('name' =>'date_modified','type' => 'datetime')
|
|
, array('name' =>'deleted', 'type' =>'bool', 'len'=>'1', 'required'=>true, 'default'=>'0')
|
|
),
|
|
'indices' => array(
|
|
array('name' =>'securitygroups_defaultpk', 'type' =>'primary', 'fields'=>array('id'))
|
|
),
|
|
'relationships' => array(
|
|
|
|
)
|
|
);
|