Where are vardefs from Suite Field creation stored?

@Ramblin

Studio is tool for current installation. If you want to use git I recommend creating file(s) in custom directory.

  1. Create file in directory: custom/Extension/modules/<module_name>/Ext/Vardefs/<file_name>.php
    – It works for all modules (system and custom).
    – Several fileds can be in one file.
    – You can redefine parameters of system modules fields.
  2. Write description of field, for an example:
$dictionary["<modile_name>"]["fields"]["number"] = array (
    'required' => true,
    'name' => 'number',
    'vname' => 'LBL_NUMBER',
    'type' => 'int',
    'readonly' => true,
    'len' => 11,
    'auto_increment' => false,
    'massupdate' => 0,
    'no_default' => false,
    'comments' => '',
    'help' => '',
    'importable' => true,
    'duplicate_merge' => 'disabled',
    'duplicate_merge_dom_value' => '0',
    'audited' => false,
    'reportable' => true,
    'unified_search' => false,
    'merge_filter' => 'disabled',
);
  1. Add language file (if need) β€˜custom/Extension/modules/<modile_name>/Ext/Language/en_us.<any_suffix>.php’
$mod_strings['LBL_NUMBER'] = 'Number';
  1. Run β€˜Quick Rapair and Rebuild’

This is a standard method for SuiteCRM 7.