How to fix "Database (database.sqlite) does not exist." in Laravel? How to fix "Database (database.sqlite) does not exist." in Laravel? sqlite sqlite

How to fix "Database (database.sqlite) does not exist." in Laravel?


The sqlite driver doesn't create the database file if it doesn't exist.

The simple solution is to create an empty file just before migrating the database into it (filling the file with schemas and data)

Simply put, this command will fix it:

 touch database/database.sqlite


You don't need anything in the .env file except the DB_CONNECTION key/value pair. When you are using SQLite, remove all of the following keys:

DB_HOST

DB_PORT

DB_DATABASE

DB_USERNAME

DB_PASSWORD


If the above solution can not handle the current issue. click here

Issue with SQLite and Laravel on Heroku