search for: mywickeddatabase

Displaying 1 result from an estimated 1 matches for "mywickeddatabase".

2006 Mar 03
1
roobie noobie migration question
...lways: 1) $ rails myapplication 2) $ mysqladmin yadda yadda to create a table 3) $ script/generate migration myWickedTable 4) put rows and columns in the migration script 5) $ rake migrate I''m just wondering why its not more like this: 1) $rails myapplication 2) $script/generate migration myWickedDatabase 3) put a table in the migration script 4) put rows and columns in the migration script 5) $ rake migrate It just seems odd that the creation of the database is seen as something special and previous to the other steps that are handled by rails. Why can''t (or shouldn''t) rails i...