_init('import_history', 'history_id'); } /** * Retrieve last inserted report id by user id * * @param string $userId * @return int $lastId */ public function getLastInsertedId($userId) { $connection = $this->getConnection(); $select = $connection ->select() ->from($this->getMainTable()) ->order($this->getIdFieldName() . ' DESC') ->where('user_id = ?', $userId) ->limit(1); return $connection->fetchOne($select); } }