/**
  * Change the side from which this table is accessed.  For instance, to
  * access from "Inquiry->InqOrg", you would call change_uuid_col(false).
  * To access from "Organization->InqOrg", pass in true.
  *
  * @param boolean $is_org_side
  */
 public static function change_uuid_col($is_org_side)
 {
     if ($is_org_side) {
         InqOrg::$UUID_COL = 'Inquiry:inq_uuid';
     } else {
         InqOrg::$UUID_COL = 'Organization:org_uuid';
     }
 }