0
0
Fork 0
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:
Connor Shea 2019-09-26 11:44:28 -06:00 committed by GitHub
parent ac4c1f6a57
commit 6120e7de65
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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),