vote up 0 vote down star

I'm trying to find the sqlite database file that rails creates.

Sorry if this is a dumb question but which folder is this file stored in?

I've looked in all of the folders in my Rails project and can't find it.

My database.yml:

   development:
      adapter: sqlite3
      database: db/development.sqlite3
      pool: 5
      timeout: 5000
flag

2 Answers

vote up 4 vote down check

It's in RAILS_ROOT/db/development.sqlite3

link|flag
Thanks ! – carson welsh May 27 at 0:18
vote up 0 vote down

FWIW the file might not exist if you haven't done rake db:create yet.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.