Reputation: 176
I'm typing in the terminal
rake db:migrate
Here's the error Im getting
ActiveRecord::NoDatabaseError: FATAL: database "db/development.sqlite3" does not exist
Upvotes: 0
Views: 1363
Reputation: 145
rake db:migrate
doesn't create database, rather requires it exists.
rake db:create
creates a database without loading database schema.
Remember you should run rake db:create
before you can run rake db:migrate
if you dropped database with rake db:drop
.
Upvotes: 1