I am trying to setup a mysql database, but I am getting this error message:
rake db:create (in /Users/yookd/Desktop/rails/blog) WARNING: Global access to Rake DSL methods is deprecated. Please Include ... Rake::DSL into classes and modules which use the Rake DSL methods. WARNING: DSL method Blog::Application#task called at /Library/Ruby/Gems/1.8/gems/railties-3.0.7/lib/rails/application.rb:215:in `initialize_tasks' db/test.sqlite3 already exists rake aborted! uninitialized constant Mysql2 Tasks: TOP => db:create (See full trace by running task with --trace)
Any assistance with this? (following directions on http://guides.rubyonrails.org/getting_started.html)
EDIT:::
How can I use mysql as my database as opposed to sqlite? In the gemfile, it explicitly states: gem 'sqlite'
... do I need to replace that line with something like gem mysql
?