Error 500 Internal Server Error

GET https://swellpal.app/index.php/app

Exceptions

An exception occurred while executing a query: SQLSTATE[HY000]: General error: 1 no such table: user

Exceptions 3

Doctrine\DBAL\Exception\ TableNotFoundException

Show exception properties
Doctrine\DBAL\Exception\TableNotFoundException {#892
  -query: Doctrine\DBAL\Query {#860
    -sql: "SELECT t0.id AS id_1, t0.email AS email_2, t0.roles AS roles_3, t0.password AS password_4 FROM user t0"
    -params: []
    -types: []
  }
}
  1.         ) {
  2.             return new NotNullConstraintViolationException($exception$query);
  3.         }
  4.         if (str_contains($exception->getMessage(), 'no such table:')) {
  5.             return new TableNotFoundException($exception$query);
  6.         }
  7.         if (str_contains($exception->getMessage(), 'already exists')) {
  8.             return new TableExistsException($exception$query);
  9.         }
  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.
  1.     ): array {
  2.         $this->switchPersisterContext($offset$limit);
  3.         $sql              $this->getSelectSQL($criterianullnull$limit$offset$orderBy);
  4.         [$params$types] = $this->expandParameters($criteria);
  5.         $stmt             $this->conn->executeQuery($sql$params$types);
  6.         $hydrator $this->em->newHydrator($this->currentPersisterContext->selectJoinSql Query::HYDRATE_OBJECT Query::HYDRATE_SIMPLEOBJECT);
  7.         return $hydrator->hydrateAll($stmt$this->currentPersisterContext->rsm, [UnitOfWork::HINT_DEFEREAGERLOAD => true]);
  8.     }
  1.      */
  2.     public function findBy(array $criteria, array|null $orderBy nullint|null $limit nullint|null $offset null): array
  3.     {
  4.         $persister $this->em->getUnitOfWork()->getEntityPersister($this->entityName);
  5.         return $persister->loadAll($criteria$orderBy$limit$offset);
  6.     }
  7.     /**
  8.      * Finds a single entity by a set of criteria.
  9.      *
  1.      * @psalm-suppress InvalidReturnType This proxy is used only in combination with newer parent class
  2.      */
  3.     public function findBy(array $criteria, array|null $orderBy nullint|null $limit nullint|null $offset null): array
  4.     {
  5.         return ($this->repository ??= $this->resolveRepository())
  6.             ->findBy($criteria$orderBy$limit$offset);
  7.     }
  8.     /** {@inheritDoc} */
  9.     public function findOneBy(array $criteria, array|null $orderBy null): object|null
  10.     {
  1.      *
  2.      * @phpstan-return list<T> The entities.
  3.      */
  4.     public function findAll(): array
  5.     {
  6.         return $this->findBy([]);
  7.     }
  8.     /**
  9.      * Finds entities by a set of criteria.
  10.      *
EntityRepository->findAll() in src/Controller/AppController.php (line 63)
  1.                  return $this->redirectToRoute('app_home', ['spot_id' => $request->request->getInt('spot_id')]);
  2.             }
  3.             $user $userRepository->findOneBy(['email' => $postEmail]);
  4.             if (!$user) {
  5.                 $user = new User();
  6.                 $user->setEmail($postEmail);
  7.                 
  8.                 $plaintextPassword 'test123';
  9.                 $hashedPassword $passwordHasher->hashPassword($user$plaintextPassword);
  1.         $this->dispatcher->dispatch($eventKernelEvents::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($eventKernelEvents::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('/var/www/vhosts/swellpal.app/httpdocs/vendor/autoload_runtime.php') in public/index.php (line 7)
  1. use App\Kernel;
  2. date_default_timezone_set('UTC');
  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[HY000]: General error: 1 no such table: user

  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);
  1.     ): array {
  2.         $this->switchPersisterContext($offset$limit);
  3.         $sql              $this->getSelectSQL($criterianullnull$limit$offset$orderBy);
  4.         [$params$types] = $this->expandParameters($criteria);
  5.         $stmt             $this->conn->executeQuery($sql$params$types);
  6.         $hydrator $this->em->newHydrator($this->currentPersisterContext->selectJoinSql Query::HYDRATE_OBJECT Query::HYDRATE_SIMPLEOBJECT);
  7.         return $hydrator->hydrateAll($stmt$this->currentPersisterContext->rsm, [UnitOfWork::HINT_DEFEREAGERLOAD => true]);
  8.     }
  1.      */
  2.     public function findBy(array $criteria, array|null $orderBy nullint|null $limit nullint|null $offset null): array
  3.     {
  4.         $persister $this->em->getUnitOfWork()->getEntityPersister($this->entityName);
  5.         return $persister->loadAll($criteria$orderBy$limit$offset);
  6.     }
  7.     /**
  8.      * Finds a single entity by a set of criteria.
  9.      *
  1.      * @psalm-suppress InvalidReturnType This proxy is used only in combination with newer parent class
  2.      */
  3.     public function findBy(array $criteria, array|null $orderBy nullint|null $limit nullint|null $offset null): array
  4.     {
  5.         return ($this->repository ??= $this->resolveRepository())
  6.             ->findBy($criteria$orderBy$limit$offset);
  7.     }
  8.     /** {@inheritDoc} */
  9.     public function findOneBy(array $criteria, array|null $orderBy null): object|null
  10.     {
  1.      *
  2.      * @phpstan-return list<T> The entities.
  3.      */
  4.     public function findAll(): array
  5.     {
  6.         return $this->findBy([]);
  7.     }
  8.     /**
  9.      * Finds entities by a set of criteria.
  10.      *
EntityRepository->findAll() in src/Controller/AppController.php (line 63)
  1.                  return $this->redirectToRoute('app_home', ['spot_id' => $request->request->getInt('spot_id')]);
  2.             }
  3.             $user $userRepository->findOneBy(['email' => $postEmail]);
  4.             if (!$user) {
  5.                 $user = new User();
  6.                 $user->setEmail($postEmail);
  7.                 
  8.                 $plaintextPassword 'test123';
  9.                 $hashedPassword $passwordHasher->hashPassword($user$plaintextPassword);
  1.         $this->dispatcher->dispatch($eventKernelEvents::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($eventKernelEvents::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('/var/www/vhosts/swellpal.app/httpdocs/vendor/autoload_runtime.php') in public/index.php (line 7)
  1. use App\Kernel;
  2. date_default_timezone_set('UTC');
  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[HY000]: General error: 1 no such table: user

  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);
  1.     ): array {
  2.         $this->switchPersisterContext($offset$limit);
  3.         $sql              $this->getSelectSQL($criterianullnull$limit$offset$orderBy);
  4.         [$params$types] = $this->expandParameters($criteria);
  5.         $stmt             $this->conn->executeQuery($sql$params$types);
  6.         $hydrator $this->em->newHydrator($this->currentPersisterContext->selectJoinSql Query::HYDRATE_OBJECT Query::HYDRATE_SIMPLEOBJECT);
  7.         return $hydrator->hydrateAll($stmt$this->currentPersisterContext->rsm, [UnitOfWork::HINT_DEFEREAGERLOAD => true]);
  8.     }
  1.      */
  2.     public function findBy(array $criteria, array|null $orderBy nullint|null $limit nullint|null $offset null): array
  3.     {
  4.         $persister $this->em->getUnitOfWork()->getEntityPersister($this->entityName);
  5.         return $persister->loadAll($criteria$orderBy$limit$offset);
  6.     }
  7.     /**
  8.      * Finds a single entity by a set of criteria.
  9.      *
  1.      * @psalm-suppress InvalidReturnType This proxy is used only in combination with newer parent class
  2.      */
  3.     public function findBy(array $criteria, array|null $orderBy nullint|null $limit nullint|null $offset null): array
  4.     {
  5.         return ($this->repository ??= $this->resolveRepository())
  6.             ->findBy($criteria$orderBy$limit$offset);
  7.     }
  8.     /** {@inheritDoc} */
  9.     public function findOneBy(array $criteria, array|null $orderBy null): object|null
  10.     {
  1.      *
  2.      * @phpstan-return list<T> The entities.
  3.      */
  4.     public function findAll(): array
  5.     {
  6.         return $this->findBy([]);
  7.     }
  8.     /**
  9.      * Finds entities by a set of criteria.
  10.      *
EntityRepository->findAll() in src/Controller/AppController.php (line 63)
  1.                  return $this->redirectToRoute('app_home', ['spot_id' => $request->request->getInt('spot_id')]);
  2.             }
  3.             $user $userRepository->findOneBy(['email' => $postEmail]);
  4.             if (!$user) {
  5.                 $user = new User();
  6.                 $user->setEmail($postEmail);
  7.                 
  8.                 $plaintextPassword 'test123';
  9.                 $hashedPassword $passwordHasher->hashPassword($user$plaintextPassword);
  1.         $this->dispatcher->dispatch($eventKernelEvents::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($eventKernelEvents::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('/var/www/vhosts/swellpal.app/httpdocs/vendor/autoload_runtime.php') in public/index.php (line 7)
  1. use App\Kernel;
  2. date_default_timezone_set('UTC');
  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 12:30:32 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "908fb5"
    },
    "request_uri": "https://swellpal.app/_profiler/908fb5?panel=exception&type=request",
    "method": "GET"
}

Stack Traces 3

[3/3] TableNotFoundException
Doctrine\DBAL\Exception\TableNotFoundException:
An exception occurred while executing a query: SQLSTATE[HY000]: General error: 1 no such table: user

  at vendor/doctrine/dbal/src/Driver/API/SQLite/ExceptionConverter.php:52
  at Doctrine\DBAL\Driver\API\SQLite\ExceptionConverter->convert()
     (vendor/doctrine/dbal/src/Connection.php:1460)
  at Doctrine\DBAL\Connection->handleDriverException()
     (vendor/doctrine/dbal/src/Connection.php:1396)
  at Doctrine\DBAL\Connection->convertExceptionDuringQuery()
     (vendor/doctrine/dbal/src/Connection.php:809)
  at Doctrine\DBAL\Connection->executeQuery()
     (vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php:963)
  at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->loadAll()
     (vendor/doctrine/orm/src/EntityRepository.php:110)
  at Doctrine\ORM\EntityRepository->findBy()
     (vendor/doctrine/doctrine-bundle/src/Repository/ServiceEntityRepositoryProxy.php:73)
  at Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryProxy->findBy()
     (vendor/doctrine/orm/src/EntityRepository.php:96)
  at Doctrine\ORM\EntityRepository->findAll()
     (src/Controller/AppController.php:63)
  at App\Controller\AppController->index()
     (vendor/symfony/http-kernel/HttpKernel.php:183)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:193)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:32)
  at require_once('/var/www/vhosts/swellpal.app/httpdocs/vendor/autoload_runtime.php')
     (public/index.php:7)                
[2/3] Exception
Doctrine\DBAL\Driver\PDO\Exception:
SQLSTATE[HY000]: General error: 1 no such table: user

  at vendor/doctrine/dbal/src/Driver/PDO/Exception.php:24
  at Doctrine\DBAL\Driver\PDO\Exception::new()
     (vendor/doctrine/dbal/src/Driver/PDO/Connection.php:62)
  at Doctrine\DBAL\Driver\PDO\Connection->query()
     (vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php:24)
  at Doctrine\DBAL\Driver\Middleware\AbstractConnectionMiddleware->query()
     (vendor/doctrine/dbal/src/Logging/Connection.php:39)
  at Doctrine\DBAL\Logging\Connection->query()
     (vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php:24)
  at Doctrine\DBAL\Driver\Middleware\AbstractConnectionMiddleware->query()
     (vendor/symfony/doctrine-bridge/Middleware/Debug/Connection.php:55)
  at Symfony\Bridge\Doctrine\Middleware\Debug\Connection->query()
     (vendor/doctrine/dbal/src/Connection.php:804)
  at Doctrine\DBAL\Connection->executeQuery()
     (vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php:963)
  at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->loadAll()
     (vendor/doctrine/orm/src/EntityRepository.php:110)
  at Doctrine\ORM\EntityRepository->findBy()
     (vendor/doctrine/doctrine-bundle/src/Repository/ServiceEntityRepositoryProxy.php:73)
  at Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryProxy->findBy()
     (vendor/doctrine/orm/src/EntityRepository.php:96)
  at Doctrine\ORM\EntityRepository->findAll()
     (src/Controller/AppController.php:63)
  at App\Controller\AppController->index()
     (vendor/symfony/http-kernel/HttpKernel.php:183)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:193)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:32)
  at require_once('/var/www/vhosts/swellpal.app/httpdocs/vendor/autoload_runtime.php')
     (public/index.php:7)                
[1/3] PDOException
PDOException:
SQLSTATE[HY000]: General error: 1 no such table: user

  at vendor/doctrine/dbal/src/Driver/PDO/Connection.php:57
  at PDO->query()
     (vendor/doctrine/dbal/src/Driver/PDO/Connection.php:57)
  at Doctrine\DBAL\Driver\PDO\Connection->query()
     (vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php:24)
  at Doctrine\DBAL\Driver\Middleware\AbstractConnectionMiddleware->query()
     (vendor/doctrine/dbal/src/Logging/Connection.php:39)
  at Doctrine\DBAL\Logging\Connection->query()
     (vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php:24)
  at Doctrine\DBAL\Driver\Middleware\AbstractConnectionMiddleware->query()
     (vendor/symfony/doctrine-bridge/Middleware/Debug/Connection.php:55)
  at Symfony\Bridge\Doctrine\Middleware\Debug\Connection->query()
     (vendor/doctrine/dbal/src/Connection.php:804)
  at Doctrine\DBAL\Connection->executeQuery()
     (vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php:963)
  at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->loadAll()
     (vendor/doctrine/orm/src/EntityRepository.php:110)
  at Doctrine\ORM\EntityRepository->findBy()
     (vendor/doctrine/doctrine-bundle/src/Repository/ServiceEntityRepositoryProxy.php:73)
  at Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryProxy->findBy()
     (vendor/doctrine/orm/src/EntityRepository.php:96)
  at Doctrine\ORM\EntityRepository->findAll()
     (src/Controller/AppController.php:63)
  at App\Controller\AppController->index()
     (vendor/symfony/http-kernel/HttpKernel.php:183)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:193)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:32)
  at require_once('/var/www/vhosts/swellpal.app/httpdocs/vendor/autoload_runtime.php')
     (public/index.php:7)