Exception: ActiveRecord::UnknownPrimaryKey

Inherits:
ActiveRecordError show all
Defined in:
lib/active_record/errors.rb

Overview

Raised when a primary key is needed, but not specified in the schema or model.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(model = nil, description = nil) ⇒ UnknownPrimaryKey

Returns a new instance of UnknownPrimaryKey.



482
483
484
485
486
487
488
489
490
491
# File 'lib/active_record/errors.rb', line 482

def initialize(model = nil, description = nil)
  if model
    message = "Unknown primary key for table #{model.table_name} in model #{model}."
    message += "\n#{description}" if description
    @model = model
    super(message)
  else
    super("Unknown primary key.")
  end
end

Instance Attribute Details

#modelObject (readonly)

Returns the value of attribute model.



480
481
482
# File 'lib/active_record/errors.rb', line 480

def model
  @model
end