Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 5657

Show
Ignore:
Timestamp:
12/01/06 05:43:35 (2 years ago)
Author:
david
Message:

Updated migrate action to use db:migrate task in Rails instead of the deprecated migrate task [DHH]

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • tools/capistrano/CHANGELOG

    r5483 r5657  
    11*SVN* 
     2 
     3* Updated migrate action to use db:migrate task in Rails instead of the deprecated migrate task [DHH] 
    24 
    35* Allow SSH user and port to be encoded in the hostname strings [Ezra Zygmuntowicz] 
  • tools/capistrano/lib/capistrano/recipes/standard.rb

    r5364 r5657  
    159159 
    160160  run "cd #{directory} && " + 
    161       "#{rake} RAILS_ENV=#{rails_env} #{migrate_env} migrate" 
     161      "#{rake} RAILS_ENV=#{rails_env} #{migrate_env} db:migrate" 
    162162end 
    163163