I am learning Laravel and I have encountered a problem when I want to refresh a migration.
php artisan migrate:refresh
I am using SQlite and below is the error I am getting
[Illuminate\Database\QueryException]
SQLSTATE[HY000]: General error: 5 database is locked (SQL: drop table if ex
ists "generate_pins")
The problem seems like it comes from the SQlite having locked the database, How do I unlock the database? After I have unlocked, can I lock it again?
I am learning both Laravel and SQlite and any help will be appreciated. Thanks in advance.