Merged in hotfix/MAPG-198-fix-not-working-game (pull request #176)

MAPG-198 re-add table name to Select
This commit is contained in:
Bence Pőcze 2020-07-05 19:19:53 +00:00
commit f2736d4d6e

View File

@ -48,7 +48,8 @@ class PlaceRepository
private function selectRandomFromDbForMap(int $mapId, array $exclude): ?Place
{
$select = new Select(\Container::$dbConnection);
//TODO: omit table name here
$select = new Select(\Container::$dbConnection, 'places');
$select->where('id', 'NOT IN', $exclude);
$select->where('map_id', '=', $mapId);