1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Refer to Rails.env only when Rails is defined

This commit is contained in:
Akira Matsuda 2013-11-11 18:39:43 +09:00
parent 5b1221347d
commit 524d4a35d2

View file

@ -32,7 +32,11 @@ module ActiveRecord
class PendingMigrationError < ActiveRecordError#:nodoc:
def initialize
super("Migrations are pending; run 'bin/rake db:migrate RAILS_ENV=#{::Rails.env}' to resolve this issue.")
if defined?(Rails)
super("Migrations are pending; run 'bin/rake db:migrate RAILS_ENV=#{::Rails.env}' to resolve this issue.")
else
super("Migrations are pending; run 'bin/rake db:migrate' to resolve this issue.")
end
end
end