Changeset 5657
- Timestamp:
- 12/01/06 05:43:35 (2 years ago)
- Files:
-
- tools/capistrano/CHANGELOG (modified) (1 diff)
- tools/capistrano/lib/capistrano/recipes/standard.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
tools/capistrano/CHANGELOG
r5483 r5657 1 1 *SVN* 2 3 * Updated migrate action to use db:migrate task in Rails instead of the deprecated migrate task [DHH] 2 4 3 5 * Allow SSH user and port to be encoded in the hostname strings [Ezra Zygmuntowicz] tools/capistrano/lib/capistrano/recipes/standard.rb
r5364 r5657 159 159 160 160 run "cd #{directory} && " + 161 "#{rake} RAILS_ENV=#{rails_env} #{migrate_env} migrate"161 "#{rake} RAILS_ENV=#{rails_env} #{migrate_env} db:migrate" 162 162 end 163 163