Try
rake db:create
which should create the database according to the contents of schema.rb
Then
rake db:migrate
which will run any migrations that are not already in schema.rb.
Colin
i have download one rails application. i am using mysql database. so i need to get the existing database into mysql, and run that application. how will run that application. i have search so many stuffs, but i didn't get related issues. how to migrate that schema into database.
I am fed up with so many gems problems to running one ruby on rails application , which use ruby 1.8.7 and rails 2.3.6. so some gems which related
After changing the rails version in environment.rb you must install
that version of rails and run
rake rails:update
That will update some files for you. Commit those to your version
control system obviously.
Although I believe there is a way of using bundler with rails 2 it is
not normally used with version 2.
If you are still having problems come back with the specific issue.
Colin