Hello BrianSteffens,
It may be easiest to use the Studio (found in Admin) to make these changes. Using the Studio will ensure that the changes are upgrade-safe.
If you'd like to search through the metadata files to find these fields, check in vardefs.php files-- this controls the properties of the fields. Here's an example from ./modules/Accounts/vardefs.php (or ./cache/modules/Accounts/Accountvardefs.php):
PHP Code:
'sic_code' =>
array (
'name' => 'sic_code',
'vname' => 'LBL_SIC_CODE',
'type' => 'varchar',
'len' => 10,
'comment' => 'SIC code of the account',
'merge_filter' => 'enabled',
),
In this case, 'len' controls the size of the VARCHAR field created in the accounts table.
Bookmarks