Reverting accidental addition of engine and parent_id columns to the Build table.

This commit is contained in:
Dan Cryer 2014-07-23 16:19:45 +01:00
commit 84e78993d8
2 changed files with 0 additions and 189 deletions

View file

@ -107,36 +107,4 @@ class BuildStoreBase extends Store
return array('items' => array(), 'count' => 0);
}
}
public function getByParentId($value, $limit = null, $useConnection = 'read')
{
if (is_null($value)) {
throw new HttpException('Value passed to ' . __FUNCTION__ . ' cannot be null.');
}
$add = '';
if ($limit) {
$add .= ' LIMIT ' . $limit;
}
$count = null;
$query = 'SELECT * FROM `build` WHERE `parent_id` = :parent_id' . $add;
$stmt = Database::getConnection($useConnection)->prepare($query);
$stmt->bindValue(':parent_id', $value);
if ($stmt->execute()) {
$res = $stmt->fetchAll(\PDO::FETCH_ASSOC);
$map = function ($item) {
return new Build($item);
};
$rtn = array_map($map, $res);
return array('items' => $rtn, 'count' => $count);
} else {
return array('items' => array(), 'count' => 0);
}
}
}