/**
  * returns all the column names of this table
  *
  * @access public
  * @return array
  */
 static function &fields()
 {
     if (!self::$_fields) {
         self::$_fields = array('id' => array('name' => 'id', 'type' => CRM_Utils_Type::T_INT, 'required' => true, 'export' => true, 'where' => 'civicrm_bank_account.id', 'headerPattern' => '', 'dataPattern' => ''), 'description' => array('name' => 'description', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Description'), 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE), 'created_date' => array('name' => 'created_date', 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME, 'title' => ts('Date created'), 'required' => true), 'modified_date' => array('name' => 'modified_date', 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME, 'title' => ts('Date modified'), 'required' => true), 'data_raw' => array('name' => 'data_raw', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('Data Raw')), 'data_parsed' => array('name' => 'data_parsed', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('Data Parsed')), 'contact_id' => array('name' => 'contact_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Contact ID'), 'FKClassName' => 'CRM_Contact_DAO_Contact'));
     }
     return self::$_fields;
 }