Exception: ActiveRecord::NoEnvironmentInSchemaError

Inherits:
MigrationError show all
Defined in:
lib/active_record/migration.rb

Overview

:nodoc:

Instance Method Summary collapse

Constructor Details

#initializeNoEnvironmentInSchemaError

Returns a new instance of NoEnvironmentInSchemaError.



185
186
187
188
189
190
191
192
# File 'lib/active_record/migration.rb', line 185

def initialize
  msg = "Environment data not found in the schema. To resolve this issue, run: \n\n        bin/rails db:environment:set"
  if defined?(Rails.env)
    super("#{msg} RAILS_ENV=#{::Rails.env}")
  else
    super(msg)
  end
end