diff --git a/templates/bundles/TwigBundle/Exception/error500.html.twig b/templates/bundles/TwigBundle/Exception/error500.html.twig
index f28933be..8f1e4667 100644
--- a/templates/bundles/TwigBundle/Exception/error500.html.twig
+++ b/templates/bundles/TwigBundle/Exception/error500.html.twig
@@ -19,9 +19,10 @@
Run yarn install and yarn build in Part-DB folder.
Run php bin/console cache:clear
- {% elseif exception.class == "Doctrine\\DBAL\\Exception\\InvalidFieldNameException" %}
- Invalid database schema. Try following things:
+ {% elseif exception.class == "Doctrine\\DBAL\\Exception\\InvalidFieldNameException" or exception.class == "Doctrine\\DBAL\\Exception\\TableNotFoundException" %}
+ Invalid or not existing database schema. Try following things:
+ - Check if the
DATABASE_URL
in .env.local
is correct
- Run php bin/console doctrine:migrations:migrate to upgrade database schema
- Run php bin/console cache:clear