Displaying 1 result from an estimated 1 matches for "mywickedt".
2006 Mar 03
1
roobie noobie migration question
...e.
One thing that has puzzled me a couple of times so far is the fact that
the creation of the database is not part of the "migration".
The steps as I''ve seen them are always:
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 migr...