Whenever I run the command rvmsudo rake db:migrate (I need to use rvmsudo because I'm using rvm), the sqlite3 files generated are owned by root.
ls -l db/*.sqlite3
Because of this, I keep on getting a SQLite3 Read Only Error whenever I try to do anything to the database, and I have to manually enter the command:
sudo chown -R myusername db/*.sqlite3
rvmsudo rake db:migrate never did this before, and I am wondering why it is happening now.
rvmsudo db:migratefrom the start, which set the sqlite3 file's users to root. I am usingrake db:migratenow (without the rvmsudo), and it generates the sqlite3 files as my user. – LanguagesNamedAfterCofee May 31 '11 at 23:13