I'm having problem with SQLite database startup, when I run the command migrate
the error appears so
[PDOException]
SQLSTATE[HY000] [14] unable to open database file
My file .sqlite
is located in the storage folder and its name is database.sqlite
.
In my configuration file it looks like this:
'sqlite' => [
'driver' => 'sqlite',
'database' => storage_path().'/database.sqlite',
'prefix' => '',
]
I do not know what's going on, apparently everything is normal.
MY OPERATIONAL SYSTEM IS WINDOWS