What is the correct way to use the post_install()? I need to create an additional field in the Contact Table on installation of my module. It works if I put the below line in a seperate module installation, but the following does not work...
public static function post_install() {
Utils_RecordBrowserCommon::new_record_field('contact',
array('name'=>'MyField', 'type'=>'custom_mymodule', 'param'=>array('field_type'=>'select', 'crits'=>array()), 'filter'=>true, 'required'=>false, 'extra'=>true, 'visible'=>true) );
return array(); //<-- Tried without this line as well
}