mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2025-03-16 22:33:34 +00:00
Fix typos in audit template metadata
Simple typo fix.
This commit is contained in:
parent
ac4c1f6a57
commit
6120e7de65
1 changed files with 4 additions and 4 deletions
|
@ -41,14 +41,14 @@ if (!defined('sugarEntry') || !sugarEntry) {
|
|||
* display the words "Powered by SugarCRM" and "Supercharged by SuiteCRM".
|
||||
*/
|
||||
|
||||
/* this table should never get created, it should only be used as a template for the acutal audit tables
|
||||
* for each moudule.
|
||||
/* This table should never get created, it should only be used as a template for the actual audit tables
|
||||
* for each module.
|
||||
*/
|
||||
$dictionary['audit'] =
|
||||
array( 'table' => 'audit',
|
||||
'fields' => array(
|
||||
'id'=> array('name' =>'id', 'type' =>'id', 'len'=>'36','required'=>true),
|
||||
'parent_id'=>array('name' =>'parent_id', 'type' =>'id', 'len'=>'36','required'=>true),
|
||||
'id'=> array('name' =>'id', 'type' =>'id', 'len'=>'36','required'=>true),
|
||||
'parent_id'=>array('name' =>'parent_id', 'type' =>'id', 'len'=>'36','required'=>true),
|
||||
'date_created'=>array('name' =>'date_created','type' => 'datetime'),
|
||||
'created_by'=>array('name' =>'created_by','type' => 'varchar','len' => 36),
|
||||
'field_name'=>array('name' =>'field_name','type' => 'varchar','len' => 100),
|
||||
|
|
Loading…
Reference in a new issue