/**
  * @return array customized attribute labels (name=>label)
  */
 public static function addLog($logType, $tablename, $desc)
 {
     $newMod = new ChangeLog();
     $newMod->tableName = $tablename;
     $newMod->desc = $desc;
     $newMod->logType = $logType;
     $newMod->save();
 }