Created
March 3, 2017 04:33
-
-
Save dmulvi/1f507af3aeaa0bfe9f4e3361b8e2799b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// this allows adding a new custom field to the core module table | |
<?php | |
$dictionary['Account']['fields']['new_field'] = array( | |
'name' => 'new_field', | |
'vname' => 'LBL_NEW_FIELD', | |
'type' => 'varchar', | |
'len' => '255', | |
'audited'=>false, | |
'required'=>false | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment