diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2012-06-10 17:23:57 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2012-06-10 17:23:57 -0300 |
commit | d17fa452ec1993271ccc6e5035fb27b9c89513cf (patch) | |
tree | e7d0a6c2e4cb34b5937756c0e502eba2e931e46a /activerecord/lib | |
parent | 6cc5e9aa81870a8a4ef1582b34abfb4deff7d115 (diff) | |
download | rails-d17fa452ec1993271ccc6e5035fb27b9c89513cf.tar.gz rails-d17fa452ec1993271ccc6e5035fb27b9c89513cf.tar.bz2 rails-d17fa452ec1993271ccc6e5035fb27b9c89513cf.zip |
Remove bundle exec from the exception message
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/migration.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/migration.rb b/activerecord/lib/active_record/migration.rb index e2ac255de2..acec65991d 100644 --- a/activerecord/lib/active_record/migration.rb +++ b/activerecord/lib/active_record/migration.rb @@ -34,7 +34,7 @@ module ActiveRecord class PendingMigrationError < ActiveRecordError#:nodoc: def initialize - super("Migrations are pending run 'bundle exec rake db:migrate RAILS_ENV=#{ENV['RAILS_ENV']}' to resolve the issue") + super("Migrations are pending run 'rake db:migrate RAILS_ENV=#{ENV['RAILS_ENV']}' to resolve the issue") end end |