Error 500 Internal Server Error

GET https://alpha.stage.bewelcome.org/safety/team

Exceptions

An exception occurred while executing a query: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'bewelcome.members' doesn't exist

Exceptions 3

Doctrine\DBAL\Exception\ TableNotFoundException

Show exception properties
Doctrine\DBAL\Exception\TableNotFoundException {#760
  -query: Doctrine\DBAL\Query {#758
    -sql: """
      \n
                  SELECT\n
                      m.*\n
                  FROM\n
                      members m, rights, rightsvolunteers\n
                  WHERE\n
                      m.Status = 'Active'\n
                      AND m.Username <> 'SafetyTeam'\n
                      AND m.id = rightsvolunteers.IdMember\n
                      AND rights.`Name` = 'SafetyTeam'\n
                      AND rightsvolunteers.IdRight = rights.id\n
                      AND rightsvolunteers.Level > 0\n
                  ORDER BY\n
                      username\n
                      
      """
    -params: []
    -types: []
  }
}
  1. 1008 => new DatabaseDoesNotExist($exception, $query),
  2. 1213 => new DeadlockException($exception, $query),
  3. 1205 => new LockWaitTimeoutException($exception, $query),
  4. 1050 => new TableExistsException($exception, $query),
  5. 1051,
  6. 1146 => new TableNotFoundException($exception, $query),
  7. 1216,
  8. 1217,
  9. 1451,
  10. 1452,
  11. 1701 => new ForeignKeyConstraintViolationException($exception, $query),
  1. private function handleDriverException(
  2. Driver\Exception $driverException,
  3. ?Query $query,
  4. ): DriverException {
  5. $this->exceptionConverter ??= $this->driver->getExceptionConverter();
  6. $exception = $this->exceptionConverter->convert($driverException, $query);
  7. if ($exception instanceof ConnectionLost) {
  8. $this->close();
  9. }
in vendor/doctrine/dbal/src/Connection.php -> handleDriverException (line 1396)
  1. Driver\Exception $e,
  2. string $sql,
  3. array $params = [],
  4. array $types = [],
  5. ): DriverException {
  6. return $this->handleDriverException($e, new Query($sql, $params, $types));
  7. }
  8. /** @internal */
  9. final public function convertException(Driver\Exception $e): DriverException
  10. {
in vendor/doctrine/dbal/src/Connection.php -> convertExceptionDuringQuery (line 809)
  1. $result = $connection->query($sql);
  2. }
  3. return new Result($result, $this);
  4. } catch (Driver\Exception $e) {
  5. throw $this->convertExceptionDuringQuery($e, $sql, $params, $types);
  6. }
  7. }
  8. /**
  9. * Executes a caching query.
in vendor/doctrine/orm/src/NativeQuery.php -> executeQuery (line 69)
  1. $parameters = array_values($parameters);
  2. $types = array_values($types);
  3. }
  4. return $this->em->getConnection()->executeQuery(
  5. $this->sql,
  6. $parameters,
  7. $types,
  8. $this->queryCacheProfile,
  9. );
  1. $setCacheEntry = static function ($data) use ($cache, $result, $cacheItem, $realCacheKey): void {
  2. $cache->save($cacheItem->set($result + [$realCacheKey => $data]));
  3. };
  4. }
  5. $stmt = $this->_doExecute();
  6. if (is_numeric($stmt)) {
  7. $setCacheEntry($stmt);
  8. return $stmt;
in vendor/doctrine/orm/src/AbstractQuery.php -> executeIgnoreQueryCache (line 886)
  1. ): mixed {
  2. if ($this->cacheable && $this->isCacheEnabled()) {
  3. return $this->executeUsingQueryCache($parameters, $hydrationMode);
  4. }
  5. return $this->executeIgnoreQueryCache($parameters, $hydrationMode);
  6. }
  7. /**
  8. * Execute query ignoring second level cache.
  9. *
  1. *
  2. * @phpstan-param string|AbstractQuery::HYDRATE_* $hydrationMode
  3. */
  4. public function getResult(string|int $hydrationMode = self::HYDRATE_OBJECT): mixed
  5. {
  6. return $this->execute(null, $hydrationMode);
  7. }
  8. /**
  9. * Gets the array of results for the query.
  10. *
AbstractQuery->getResult() in src/Model/SafetyModel.php (line 42)
  1. AND rightsvolunteers.Level > 0
  2. ORDER BY
  3. username
  4. ", $rsm);
  5. return $query->getResult();
  6. }
  7. }
SafetyModel->getSafetyTeamMembers() in src/Controller/SafetyController.php (line 88)
  1. * @return Response
  2. */
  3. #[Route(path: '/safety/team', name: 'safety_team')]
  4. public function showSafetyTeam(SafetyModel $safetyModel)
  5. {
  6. $teamMembers = $safetyModel->getSafetyTeamMembers();
  7. return $this->render('safety/safetyteam.html.twig', [
  8. 'team_members' => $teamMembers,
  9. 'submenu' => [
  10. 'items' => $this->getSubMenuItems(),
in vendor/symfony/http-kernel/HttpKernel.php -> showSafetyTeam (line 183)
  1. $this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);
  2. $controller = $event->getController();
  3. $arguments = $event->getArguments();
  4. // call controller
  5. $response = $controller(...$arguments);
  6. // view
  7. if (!$response instanceof Response) {
  8. $event = new ViewEvent($this, $request, $type, $response, $event);
  9. $this->dispatcher->dispatch($event, KernelEvents::VIEW);
  1. $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2. $this->requestStack->push($request);
  3. $response = null;
  4. try {
  5. return $response = $this->handleRaw($request, $type);
  6. } catch (\Throwable $e) {
  7. if ($e instanceof \Error && !$this->handleAllThrowables) {
  8. throw $e;
  9. }
  1. if (!$this->handlingHttpCache) {
  2. $this->resetServices = true;
  3. }
  4. try {
  5. return $this->getHttpKernel()->handle($request, $type, $catch);
  6. } finally {
  7. --$this->requestStackSize;
  8. }
  9. }
  1. ) {
  2. }
  3. public function run(): int
  4. {
  5. $response = $this->kernel->handle($this->request);
  6. if (Kernel::VERSION_ID >= 60400) {
  7. $response->send(false);
  8. if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in vendor/autoload_runtime.php -> run (line 32)
  1. $app = $app(...$args);
  2. exit(
  3. $runtime
  4. ->getRunner($app)
  5. ->run()
  6. );
require_once('/srv/bewelcome/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5. return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Doctrine\DBAL\Driver\PDO\ Exception

SQLSTATE[42S02]: Base table or view not found: 1146 Table 'bewelcome.members' doesn't exist

  1. } else {
  2. $code = $exception->getCode();
  3. $sqlState = null;
  4. }
  5. return new self($exception->getMessage(), $sqlState, $code, $exception);
  6. }
  7. }
  1. $stmt = $this->connection->query($sql);
  2. assert($stmt instanceof PDOStatement);
  3. return new Result($stmt);
  4. } catch (PDOException $exception) {
  5. throw Exception::new($exception);
  6. }
  7. }
  8. public function quote(string $value): string
  9. {
  1. return $this->wrappedConnection->prepare($sql);
  2. }
  3. public function query(string $sql): Result
  4. {
  5. return $this->wrappedConnection->query($sql);
  6. }
  7. public function quote(string $value): string
  8. {
  9. return $this->wrappedConnection->quote($value);
  1. public function query(string $sql): Result
  2. {
  3. $this->logger->debug('Executing query: {sql}', ['sql' => $sql]);
  4. return parent::query($sql);
  5. }
  6. public function exec(string $sql): int|string
  7. {
  8. $this->logger->debug('Executing statement: {sql}', ['sql' => $sql]);
  1. return $this->wrappedConnection->prepare($sql);
  2. }
  3. public function query(string $sql): Result
  4. {
  5. return $this->wrappedConnection->query($sql);
  6. }
  7. public function quote(string $value): string
  8. {
  9. return $this->wrappedConnection->quote($value);
  1. $this->stopwatch?->start('doctrine', 'doctrine');
  2. $query->start();
  3. try {
  4. return parent::query($sql);
  5. } finally {
  6. $query->stop();
  7. $this->stopwatch?->stop('doctrine');
  8. }
  9. }
  1. $this->bindParameters($stmt, $params, $types);
  2. $result = $stmt->execute();
  3. } else {
  4. $result = $connection->query($sql);
  5. }
  6. return new Result($result, $this);
  7. } catch (Driver\Exception $e) {
  8. throw $this->convertExceptionDuringQuery($e, $sql, $params, $types);
in vendor/doctrine/orm/src/NativeQuery.php -> executeQuery (line 69)
  1. $parameters = array_values($parameters);
  2. $types = array_values($types);
  3. }
  4. return $this->em->getConnection()->executeQuery(
  5. $this->sql,
  6. $parameters,
  7. $types,
  8. $this->queryCacheProfile,
  9. );
  1. $setCacheEntry = static function ($data) use ($cache, $result, $cacheItem, $realCacheKey): void {
  2. $cache->save($cacheItem->set($result + [$realCacheKey => $data]));
  3. };
  4. }
  5. $stmt = $this->_doExecute();
  6. if (is_numeric($stmt)) {
  7. $setCacheEntry($stmt);
  8. return $stmt;
in vendor/doctrine/orm/src/AbstractQuery.php -> executeIgnoreQueryCache (line 886)
  1. ): mixed {
  2. if ($this->cacheable && $this->isCacheEnabled()) {
  3. return $this->executeUsingQueryCache($parameters, $hydrationMode);
  4. }
  5. return $this->executeIgnoreQueryCache($parameters, $hydrationMode);
  6. }
  7. /**
  8. * Execute query ignoring second level cache.
  9. *
  1. *
  2. * @phpstan-param string|AbstractQuery::HYDRATE_* $hydrationMode
  3. */
  4. public function getResult(string|int $hydrationMode = self::HYDRATE_OBJECT): mixed
  5. {
  6. return $this->execute(null, $hydrationMode);
  7. }
  8. /**
  9. * Gets the array of results for the query.
  10. *
AbstractQuery->getResult() in src/Model/SafetyModel.php (line 42)
  1. AND rightsvolunteers.Level > 0
  2. ORDER BY
  3. username
  4. ", $rsm);
  5. return $query->getResult();
  6. }
  7. }
SafetyModel->getSafetyTeamMembers() in src/Controller/SafetyController.php (line 88)
  1. * @return Response
  2. */
  3. #[Route(path: '/safety/team', name: 'safety_team')]
  4. public function showSafetyTeam(SafetyModel $safetyModel)
  5. {
  6. $teamMembers = $safetyModel->getSafetyTeamMembers();
  7. return $this->render('safety/safetyteam.html.twig', [
  8. 'team_members' => $teamMembers,
  9. 'submenu' => [
  10. 'items' => $this->getSubMenuItems(),
in vendor/symfony/http-kernel/HttpKernel.php -> showSafetyTeam (line 183)
  1. $this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);
  2. $controller = $event->getController();
  3. $arguments = $event->getArguments();
  4. // call controller
  5. $response = $controller(...$arguments);
  6. // view
  7. if (!$response instanceof Response) {
  8. $event = new ViewEvent($this, $request, $type, $response, $event);
  9. $this->dispatcher->dispatch($event, KernelEvents::VIEW);
  1. $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2. $this->requestStack->push($request);
  3. $response = null;
  4. try {
  5. return $response = $this->handleRaw($request, $type);
  6. } catch (\Throwable $e) {
  7. if ($e instanceof \Error && !$this->handleAllThrowables) {
  8. throw $e;
  9. }
  1. if (!$this->handlingHttpCache) {
  2. $this->resetServices = true;
  3. }
  4. try {
  5. return $this->getHttpKernel()->handle($request, $type, $catch);
  6. } finally {
  7. --$this->requestStackSize;
  8. }
  9. }
  1. ) {
  2. }
  3. public function run(): int
  4. {
  5. $response = $this->kernel->handle($this->request);
  6. if (Kernel::VERSION_ID >= 60400) {
  7. $response->send(false);
  8. if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in vendor/autoload_runtime.php -> run (line 32)
  1. $app = $app(...$args);
  2. exit(
  3. $runtime
  4. ->getRunner($app)
  5. ->run()
  6. );
require_once('/srv/bewelcome/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5. return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

PDOException

SQLSTATE[42S02]: Base table or view not found: 1146 Table 'bewelcome.members' doesn't exist

  1. }
  2. public function query(string $sql): Result
  3. {
  4. try {
  5. $stmt = $this->connection->query($sql);
  6. assert($stmt instanceof PDOStatement);
  7. return new Result($stmt);
  8. } catch (PDOException $exception) {
  9. throw Exception::new($exception);
  1. }
  2. public function query(string $sql): Result
  3. {
  4. try {
  5. $stmt = $this->connection->query($sql);
  6. assert($stmt instanceof PDOStatement);
  7. return new Result($stmt);
  8. } catch (PDOException $exception) {
  9. throw Exception::new($exception);
  1. return $this->wrappedConnection->prepare($sql);
  2. }
  3. public function query(string $sql): Result
  4. {
  5. return $this->wrappedConnection->query($sql);
  6. }
  7. public function quote(string $value): string
  8. {
  9. return $this->wrappedConnection->quote($value);
  1. public function query(string $sql): Result
  2. {
  3. $this->logger->debug('Executing query: {sql}', ['sql' => $sql]);
  4. return parent::query($sql);
  5. }
  6. public function exec(string $sql): int|string
  7. {
  8. $this->logger->debug('Executing statement: {sql}', ['sql' => $sql]);
  1. return $this->wrappedConnection->prepare($sql);
  2. }
  3. public function query(string $sql): Result
  4. {
  5. return $this->wrappedConnection->query($sql);
  6. }
  7. public function quote(string $value): string
  8. {
  9. return $this->wrappedConnection->quote($value);
  1. $this->stopwatch?->start('doctrine', 'doctrine');
  2. $query->start();
  3. try {
  4. return parent::query($sql);
  5. } finally {
  6. $query->stop();
  7. $this->stopwatch?->stop('doctrine');
  8. }
  9. }
  1. $this->bindParameters($stmt, $params, $types);
  2. $result = $stmt->execute();
  3. } else {
  4. $result = $connection->query($sql);
  5. }
  6. return new Result($result, $this);
  7. } catch (Driver\Exception $e) {
  8. throw $this->convertExceptionDuringQuery($e, $sql, $params, $types);
in vendor/doctrine/orm/src/NativeQuery.php -> executeQuery (line 69)
  1. $parameters = array_values($parameters);
  2. $types = array_values($types);
  3. }
  4. return $this->em->getConnection()->executeQuery(
  5. $this->sql,
  6. $parameters,
  7. $types,
  8. $this->queryCacheProfile,
  9. );
  1. $setCacheEntry = static function ($data) use ($cache, $result, $cacheItem, $realCacheKey): void {
  2. $cache->save($cacheItem->set($result + [$realCacheKey => $data]));
  3. };
  4. }
  5. $stmt = $this->_doExecute();
  6. if (is_numeric($stmt)) {
  7. $setCacheEntry($stmt);
  8. return $stmt;
in vendor/doctrine/orm/src/AbstractQuery.php -> executeIgnoreQueryCache (line 886)
  1. ): mixed {
  2. if ($this->cacheable && $this->isCacheEnabled()) {
  3. return $this->executeUsingQueryCache($parameters, $hydrationMode);
  4. }
  5. return $this->executeIgnoreQueryCache($parameters, $hydrationMode);
  6. }
  7. /**
  8. * Execute query ignoring second level cache.
  9. *
  1. *
  2. * @phpstan-param string|AbstractQuery::HYDRATE_* $hydrationMode
  3. */
  4. public function getResult(string|int $hydrationMode = self::HYDRATE_OBJECT): mixed
  5. {
  6. return $this->execute(null, $hydrationMode);
  7. }
  8. /**
  9. * Gets the array of results for the query.
  10. *
AbstractQuery->getResult() in src/Model/SafetyModel.php (line 42)
  1. AND rightsvolunteers.Level > 0
  2. ORDER BY
  3. username
  4. ", $rsm);
  5. return $query->getResult();
  6. }
  7. }
SafetyModel->getSafetyTeamMembers() in src/Controller/SafetyController.php (line 88)
  1. * @return Response
  2. */
  3. #[Route(path: '/safety/team', name: 'safety_team')]
  4. public function showSafetyTeam(SafetyModel $safetyModel)
  5. {
  6. $teamMembers = $safetyModel->getSafetyTeamMembers();
  7. return $this->render('safety/safetyteam.html.twig', [
  8. 'team_members' => $teamMembers,
  9. 'submenu' => [
  10. 'items' => $this->getSubMenuItems(),
in vendor/symfony/http-kernel/HttpKernel.php -> showSafetyTeam (line 183)
  1. $this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);
  2. $controller = $event->getController();
  3. $arguments = $event->getArguments();
  4. // call controller
  5. $response = $controller(...$arguments);
  6. // view
  7. if (!$response instanceof Response) {
  8. $event = new ViewEvent($this, $request, $type, $response, $event);
  9. $this->dispatcher->dispatch($event, KernelEvents::VIEW);
  1. $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2. $this->requestStack->push($request);
  3. $response = null;
  4. try {
  5. return $response = $this->handleRaw($request, $type);
  6. } catch (\Throwable $e) {
  7. if ($e instanceof \Error && !$this->handleAllThrowables) {
  8. throw $e;
  9. }
  1. if (!$this->handlingHttpCache) {
  2. $this->resetServices = true;
  3. }
  4. try {
  5. return $this->getHttpKernel()->handle($request, $type, $catch);
  6. } finally {
  7. --$this->requestStackSize;
  8. }
  9. }
  1. ) {
  2. }
  3. public function run(): int
  4. {
  5. $response = $this->kernel->handle($this->request);
  6. if (Kernel::VERSION_ID >= 60400) {
  7. $response->send(false);
  8. if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in vendor/autoload_runtime.php -> run (line 32)
  1. $app = $app(...$args);
  2. exit(
  3. $runtime
  4. ->getRunner($app)
  5. ->run()
  6. );
require_once('/srv/bewelcome/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5. return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Logs

Level Channel Message
INFO 18:45:15 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "b5a074"
    },
    "request_uri": "https://alpha.stage.bewelcome.org/_profiler/b5a074",
    "method": "GET"
}

Stack Traces 3

[3/3] TableNotFoundException
Doctrine\DBAL\Exception\TableNotFoundException:
An exception occurred while executing a query: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'bewelcome.members' doesn't exist

  at vendor/doctrine/dbal/src/Driver/API/MySQL/ExceptionConverter.php:51
  at Doctrine\DBAL\Driver\API\MySQL\ExceptionConverter->convert(object(Exception), object(Query))
     (vendor/doctrine/dbal/src/Connection.php:1460)
  at Doctrine\DBAL\Connection->handleDriverException(object(Exception), object(Query))
     (vendor/doctrine/dbal/src/Connection.php:1396)
  at Doctrine\DBAL\Connection->convertExceptionDuringQuery(object(Exception), '            SELECT                m.*            FROM                members m, rights, rightsvolunteers            WHERE                m.Status = \'Active\'                AND m.Username <> \'SafetyTeam\'                AND m.id = rightsvolunteers.IdMember                AND rights.`Name` = \'SafetyTeam\'                AND rightsvolunteers.IdRight = rights.id                AND rightsvolunteers.Level > 0            ORDER BY                username                ', array(), array())
     (vendor/doctrine/dbal/src/Connection.php:809)
  at Doctrine\DBAL\Connection->executeQuery('            SELECT                m.*            FROM                members m, rights, rightsvolunteers            WHERE                m.Status = \'Active\'                AND m.Username <> \'SafetyTeam\'                AND m.id = rightsvolunteers.IdMember                AND rights.`Name` = \'SafetyTeam\'                AND rightsvolunteers.IdRight = rights.id                AND rightsvolunteers.Level > 0            ORDER BY                username                ', array(), array(), null)
     (vendor/doctrine/orm/src/NativeQuery.php:69)
  at Doctrine\ORM\NativeQuery->_doExecute()
     (vendor/doctrine/orm/src/AbstractQuery.php:930)
  at Doctrine\ORM\AbstractQuery->executeIgnoreQueryCache(null, 1)
     (vendor/doctrine/orm/src/AbstractQuery.php:886)
  at Doctrine\ORM\AbstractQuery->execute(null, 1)
     (vendor/doctrine/orm/src/AbstractQuery.php:688)
  at Doctrine\ORM\AbstractQuery->getResult()
     (src/Model/SafetyModel.php:42)
  at App\Model\SafetyModel->getSafetyTeamMembers()
     (src/Controller/SafetyController.php:88)
  at App\Controller\SafetyController->showSafetyTeam(object(SafetyModel))
     (vendor/symfony/http-kernel/HttpKernel.php:183)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:191)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:32)
  at require_once('/srv/bewelcome/vendor/autoload_runtime.php')
     (public/index.php:5)                
[2/3] Exception
Doctrine\DBAL\Driver\PDO\Exception:
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'bewelcome.members' doesn't exist

  at vendor/doctrine/dbal/src/Driver/PDO/Exception.php:24
  at Doctrine\DBAL\Driver\PDO\Exception::new(object(PDOException))
     (vendor/doctrine/dbal/src/Driver/PDO/Connection.php:62)
  at Doctrine\DBAL\Driver\PDO\Connection->query('            SELECT                m.*            FROM                members m, rights, rightsvolunteers            WHERE                m.Status = \'Active\'                AND m.Username <> \'SafetyTeam\'                AND m.id = rightsvolunteers.IdMember                AND rights.`Name` = \'SafetyTeam\'                AND rightsvolunteers.IdRight = rights.id                AND rightsvolunteers.Level > 0            ORDER BY                username                ')
     (vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php:24)
  at Doctrine\DBAL\Driver\Middleware\AbstractConnectionMiddleware->query('            SELECT                m.*            FROM                members m, rights, rightsvolunteers            WHERE                m.Status = \'Active\'                AND m.Username <> \'SafetyTeam\'                AND m.id = rightsvolunteers.IdMember                AND rights.`Name` = \'SafetyTeam\'                AND rightsvolunteers.IdRight = rights.id                AND rightsvolunteers.Level > 0            ORDER BY                username                ')
     (vendor/doctrine/dbal/src/Logging/Connection.php:39)
  at Doctrine\DBAL\Logging\Connection->query('            SELECT                m.*            FROM                members m, rights, rightsvolunteers            WHERE                m.Status = \'Active\'                AND m.Username <> \'SafetyTeam\'                AND m.id = rightsvolunteers.IdMember                AND rights.`Name` = \'SafetyTeam\'                AND rightsvolunteers.IdRight = rights.id                AND rightsvolunteers.Level > 0            ORDER BY                username                ')
     (vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php:24)
  at Doctrine\DBAL\Driver\Middleware\AbstractConnectionMiddleware->query('            SELECT                m.*            FROM                members m, rights, rightsvolunteers            WHERE                m.Status = \'Active\'                AND m.Username <> \'SafetyTeam\'                AND m.id = rightsvolunteers.IdMember                AND rights.`Name` = \'SafetyTeam\'                AND rightsvolunteers.IdRight = rights.id                AND rightsvolunteers.Level > 0            ORDER BY                username                ')
     (vendor/symfony/doctrine-bridge/Middleware/Debug/Connection.php:55)
  at Symfony\Bridge\Doctrine\Middleware\Debug\Connection->query('            SELECT                m.*            FROM                members m, rights, rightsvolunteers            WHERE                m.Status = \'Active\'                AND m.Username <> \'SafetyTeam\'                AND m.id = rightsvolunteers.IdMember                AND rights.`Name` = \'SafetyTeam\'                AND rightsvolunteers.IdRight = rights.id                AND rightsvolunteers.Level > 0            ORDER BY                username                ')
     (vendor/doctrine/dbal/src/Connection.php:804)
  at Doctrine\DBAL\Connection->executeQuery('            SELECT                m.*            FROM                members m, rights, rightsvolunteers            WHERE                m.Status = \'Active\'                AND m.Username <> \'SafetyTeam\'                AND m.id = rightsvolunteers.IdMember                AND rights.`Name` = \'SafetyTeam\'                AND rightsvolunteers.IdRight = rights.id                AND rightsvolunteers.Level > 0            ORDER BY                username                ', array(), array(), null)
     (vendor/doctrine/orm/src/NativeQuery.php:69)
  at Doctrine\ORM\NativeQuery->_doExecute()
     (vendor/doctrine/orm/src/AbstractQuery.php:930)
  at Doctrine\ORM\AbstractQuery->executeIgnoreQueryCache(null, 1)
     (vendor/doctrine/orm/src/AbstractQuery.php:886)
  at Doctrine\ORM\AbstractQuery->execute(null, 1)
     (vendor/doctrine/orm/src/AbstractQuery.php:688)
  at Doctrine\ORM\AbstractQuery->getResult()
     (src/Model/SafetyModel.php:42)
  at App\Model\SafetyModel->getSafetyTeamMembers()
     (src/Controller/SafetyController.php:88)
  at App\Controller\SafetyController->showSafetyTeam(object(SafetyModel))
     (vendor/symfony/http-kernel/HttpKernel.php:183)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:191)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:32)
  at require_once('/srv/bewelcome/vendor/autoload_runtime.php')
     (public/index.php:5)                
[1/3] PDOException
PDOException:
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'bewelcome.members' doesn't exist

  at vendor/doctrine/dbal/src/Driver/PDO/Connection.php:57
  at PDO->query('            SELECT                m.*            FROM                members m, rights, rightsvolunteers            WHERE                m.Status = \'Active\'                AND m.Username <> \'SafetyTeam\'                AND m.id = rightsvolunteers.IdMember                AND rights.`Name` = \'SafetyTeam\'                AND rightsvolunteers.IdRight = rights.id                AND rightsvolunteers.Level > 0            ORDER BY                username                ')
     (vendor/doctrine/dbal/src/Driver/PDO/Connection.php:57)
  at Doctrine\DBAL\Driver\PDO\Connection->query('            SELECT                m.*            FROM                members m, rights, rightsvolunteers            WHERE                m.Status = \'Active\'                AND m.Username <> \'SafetyTeam\'                AND m.id = rightsvolunteers.IdMember                AND rights.`Name` = \'SafetyTeam\'                AND rightsvolunteers.IdRight = rights.id                AND rightsvolunteers.Level > 0            ORDER BY                username                ')
     (vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php:24)
  at Doctrine\DBAL\Driver\Middleware\AbstractConnectionMiddleware->query('            SELECT                m.*            FROM                members m, rights, rightsvolunteers            WHERE                m.Status = \'Active\'                AND m.Username <> \'SafetyTeam\'                AND m.id = rightsvolunteers.IdMember                AND rights.`Name` = \'SafetyTeam\'                AND rightsvolunteers.IdRight = rights.id                AND rightsvolunteers.Level > 0            ORDER BY                username                ')
     (vendor/doctrine/dbal/src/Logging/Connection.php:39)
  at Doctrine\DBAL\Logging\Connection->query('            SELECT                m.*            FROM                members m, rights, rightsvolunteers            WHERE                m.Status = \'Active\'                AND m.Username <> \'SafetyTeam\'                AND m.id = rightsvolunteers.IdMember                AND rights.`Name` = \'SafetyTeam\'                AND rightsvolunteers.IdRight = rights.id                AND rightsvolunteers.Level > 0            ORDER BY                username                ')
     (vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php:24)
  at Doctrine\DBAL\Driver\Middleware\AbstractConnectionMiddleware->query('            SELECT                m.*            FROM                members m, rights, rightsvolunteers            WHERE                m.Status = \'Active\'                AND m.Username <> \'SafetyTeam\'                AND m.id = rightsvolunteers.IdMember                AND rights.`Name` = \'SafetyTeam\'                AND rightsvolunteers.IdRight = rights.id                AND rightsvolunteers.Level > 0            ORDER BY                username                ')
     (vendor/symfony/doctrine-bridge/Middleware/Debug/Connection.php:55)
  at Symfony\Bridge\Doctrine\Middleware\Debug\Connection->query('            SELECT                m.*            FROM                members m, rights, rightsvolunteers            WHERE                m.Status = \'Active\'                AND m.Username <> \'SafetyTeam\'                AND m.id = rightsvolunteers.IdMember                AND rights.`Name` = \'SafetyTeam\'                AND rightsvolunteers.IdRight = rights.id                AND rightsvolunteers.Level > 0            ORDER BY                username                ')
     (vendor/doctrine/dbal/src/Connection.php:804)
  at Doctrine\DBAL\Connection->executeQuery('            SELECT                m.*            FROM                members m, rights, rightsvolunteers            WHERE                m.Status = \'Active\'                AND m.Username <> \'SafetyTeam\'                AND m.id = rightsvolunteers.IdMember                AND rights.`Name` = \'SafetyTeam\'                AND rightsvolunteers.IdRight = rights.id                AND rightsvolunteers.Level > 0            ORDER BY                username                ', array(), array(), null)
     (vendor/doctrine/orm/src/NativeQuery.php:69)
  at Doctrine\ORM\NativeQuery->_doExecute()
     (vendor/doctrine/orm/src/AbstractQuery.php:930)
  at Doctrine\ORM\AbstractQuery->executeIgnoreQueryCache(null, 1)
     (vendor/doctrine/orm/src/AbstractQuery.php:886)
  at Doctrine\ORM\AbstractQuery->execute(null, 1)
     (vendor/doctrine/orm/src/AbstractQuery.php:688)
  at Doctrine\ORM\AbstractQuery->getResult()
     (src/Model/SafetyModel.php:42)
  at App\Model\SafetyModel->getSafetyTeamMembers()
     (src/Controller/SafetyController.php:88)
  at App\Controller\SafetyController->showSafetyTeam(object(SafetyModel))
     (vendor/symfony/http-kernel/HttpKernel.php:183)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:191)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:32)
  at require_once('/srv/bewelcome/vendor/autoload_runtime.php')
     (public/index.php:5)