Displaying 1 result from an estimated 1 matches for "001_create_comments".
2008 Apr 03
3
Branchable migrations -- A plugin to let you organize your migrations
...s by table or feature. Doing
so should alleviate many of the problems that seem to pike up when
working on teams and using migrations for everything.
For example, if your db directory looked this:
db/
migrate/
001_create_things.rb
002_create_pandas.rb
branch1/
001_create_comments.rb
002_create_replies.rb
branch2/
001_create_posts.rb
Then running rake db:migrate would look like this:
**************************************************
-- Executing migrations in root...
**************************************************
== 1 CreateThings: migratin...