From 7ea5d02edd494613469865b8b73ccc756011fbdf Mon Sep 17 00:00:00 2001 From: Frederike Ramin <9320199+frederike-ramin@users.noreply.github.com> Date: Thu, 19 Sep 2024 05:29:02 +0200 Subject: [PATCH] Update table not found error fix in the readme (#1487) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 24acc185..f6735a56 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ By default SQLite DB is used. For other available environments refer to: `src/se ### SQLite table not found This may occur if the SQlite tables created is in the wrong format or required tables are not created -Add `await sequelize.sync({force:true}` to the `server/database/index` file after `await sequelize.authenticate()`. This will force all the tables in to be dropped and created again with the correct tables. +Add `await sequelize.sync({ force:true })` to the `src/server/bootstrap/index` file after `await sequelize.authenticate()`. This will force all the tables in to be dropped and created again with the correct tables. A potential long term fix for issues related to SQLite is to replace SQLite with a docker-compose environment for usage during development.