Ran into this error message whilst developing tonight: SQLite3::BusyException: database is locked:
SQLite3::BusyException: database is locked:
I have two models:
actually for me, I found killing rails help to fix this problem.
use "ps aux | grep rails" to find out ongoing rails process id. then use
"ps aux | grep rails"
"kill -9 [rails-pid]"
to kill processes.
Then it will work