user8112782
user8112782

Reputation:

How to create a Rails project along with its database in Rails2?

I have the project built using

Rails 2.3.18
ruby 1.9.3p551 (2014-11-13 revision 48407) [x86_64-linux]

How to create the new project along with its Database.
Like in rails 4 & 5 we do

rails new app -d mysql

Upvotes: 0

Views: 20

Answers (1)

random_user_0891
random_user_0891

Reputation: 2051

Start by checking over the guides for Rails 2.3 version here: http://guides.rubyonrails.org/v2.3/command_line.html

from this guide http://guides.rubyonrails.org/v2.3/command_line.html it looks to be

rails commandsapp

Upvotes: 0

Related Questions